python.pkgs.astor: also disable some test on python2

Changed files
+1 -1
pkgs
development
python-modules
astor
+1 -1
pkgs/development/python-modules/astor/default.nix
···
# 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'
'';
meta = with stdenv.lib; {
···
# 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 and not test_codegen_as_submodule and not test_codegen_from_root'
'';
meta = with stdenv.lib; {