mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
pythonPackages.pytest-rerunfailures: fix build
some tests fail since pytest 3.7.2 -> 3.7.4 update, disable them
This commit is contained in:
parent
781eaa1377
commit
0bda601ee5
|
@ -9,10 +9,13 @@ buildPythonPackage rec {
|
|||
sha256 = "be6bf93ed618c8899aeb6721c24f8009c769879a3b4931e05650f3c173ec17c5";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
checkInputs = [ mock ];
|
||||
|
||||
propagatedBuildInputs = [ pytest ];
|
||||
|
||||
# disable tests that fail with pytest 3.7.4
|
||||
checkPhase = ''
|
||||
py.test
|
||||
py.test test_pytest_rerunfailures.py -k 'not test_reruns_with_delay'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue