summary refs log tree commit diff
path: root/pkgs/development/python-modules/moto
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-02-08 16:53:07 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-02-09 09:17:31 +0100
commit9efb75c0eedd5b927fbdb150218ebc061dfc8f44 (patch)
tree22e68a04bbc4582df0b5984f120d7a4e520eb939 /pkgs/development/python-modules/moto
parenta328142bde245de1544204803a21bd3173015176 (diff)
downloadnixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar.gz
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar.bz2
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar.lz
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar.xz
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.tar.zst
nixpkgs-9efb75c0eedd5b927fbdb150218ebc061dfc8f44.zip
pythonPackages.moto: disable tests
Diffstat (limited to 'pkgs/development/python-modules/moto')
-rw-r--r--pkgs/development/python-modules/moto/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/moto/default.nix b/pkgs/development/python-modules/moto/default.nix
index cb1bb6dd980..c84427b01c4 100644
--- a/pkgs/development/python-modules/moto/default.nix
+++ b/pkgs/development/python-modules/moto/default.nix
@@ -78,6 +78,11 @@ buildPythonPackage rec {
               -e test_passthrough_requests
   '';
 
+  # Disabling because of 20 failing tests due to https://github.com/spulec/moto/issues/2728
+  # We should enable these as soon as possible again though. Note the issue
+  # is unrelated to the docutils 0.16 bump.
+  doCheck = false;
+
   meta = with lib; {
     description = "Allows your tests to easily mock out AWS Services";
     homepage = https://github.com/spulec/moto;