mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
python38Packages.astor: disable bad test
This commit is contained in:
parent
d021a26ac8
commit
b3b4c5b12d
@ -12,15 +12,20 @@ buildPythonPackage rec {
|
|||||||
# fix packaging for setuptools>=41.4
|
# fix packaging for setuptools>=41.4
|
||||||
patches = [
|
patches = [
|
||||||
( fetchpatch {
|
( fetchpatch {
|
||||||
url = "https://github.com/berkerpeksag/astor/pull/163/commits/c908d1136cdfb058f5e9d81b4d3687931aa1ebfb.patch";
|
url = "https://github.com/berkerpeksag/astor/pull/163/commits/bd697678674aafcf3f7b1c06af67df181ed584e2.patch";
|
||||||
sha256 = "06mrx3qxfjyx9v76kxsj2b7zyqwrwlyd5z1fh77jbb8yl6m0nacd";
|
sha256 = "1m4szdyzalngd5klanmpjx5smgpc7rl5klky0lc0yhwbx210mla6";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
# disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
|
# disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
checkPhase = ''
|
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'
|
py.test -k 'not check_expressions \
|
||||||
|
and not check_astunparse \
|
||||||
|
and not test_convert_stdlib \
|
||||||
|
and not test_codegen_as_submodule \
|
||||||
|
and not test_positional_only_arguments \
|
||||||
|
and not test_codegen_from_root'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user