nixpkgs/pkgs/development/python-modules/pytest-rerunfailures/default.nix

28 lines
742 B
Nix
Raw Normal View History

2018-01-09 17:08:02 +00:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
buildPythonPackage rec {
pname = "pytest-rerunfailures";
version = "4.1";
2018-01-09 17:08:02 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "be6bf93ed618c8899aeb6721c24f8009c769879a3b4931e05650f3c173ec17c5";
2018-01-09 17:08:02 +00:00
};
checkInputs = [ mock ];
2018-01-09 17:08:02 +00:00
propagatedBuildInputs = [ pytest ];
# disable tests that fail with pytest 3.7.4
2018-01-09 17:08:02 +00:00
checkPhase = ''
py.test test_pytest_rerunfailures.py -k 'not test_reruns_with_delay'
2018-01-09 17:08:02 +00:00
'';
meta = with stdenv.lib; {
description = "pytest plugin to re-run tests to eliminate flaky failures.";
homepage = https://github.com/pytest-dev/pytest-rerunfailures;
license = licenses.mpl20;
maintainers = with maintainers; [ jgeerds ];
};
}