about summary refs log tree commit diff
path: root/pkgs/development/python-modules/astor
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-01-24 06:24:16 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-01-24 06:24:16 +0000
commit976d17fb5ee1d11d2d9f755fb7177c3b05ceae39 (patch)
tree58f788eaf403703e1194c35a1ea4380558ffc404 /pkgs/development/python-modules/astor
parent3b6b52b19f57c9b5fdfa9368698ee2be6a59a021 (diff)
python.pkgs.astor: also disable some test on python2
Diffstat (limited to 'pkgs/development/python-modules/astor')
-rw-r--r--pkgs/development/python-modules/astor/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix
index 6a0bc0bb2acd5..9fb92b860a158 100644
--- a/pkgs/development/python-modules/astor/default.nix
+++ b/pkgs/development/python-modules/astor/default.nix
@@ -13,7 +13,7 @@ buildPythonPackage rec {
   # disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
   checkInputs = [ pytest ];
   checkPhase = ''
-    py.test -k 'not check_expressions and not check_astunparse and not test_convert_stdlib'
+    py.test -k 'not check_expressions and not check_astunparse and not test_convert_stdlib and not test_codegen_as_submodule and not test_codegen_from_root'
   '';
 
   meta = with stdenv.lib; {