python3Packages.pytest-rerunfailures: 14.0 -> 15.0 (#358855)

Changed files
+3 -12
pkgs
development
python-modules
pytest-rerunfailures
+3 -12
pkgs/development/python-modules/pytest-rerunfailures/default.nix
···
buildPythonPackage rec {
pname = "pytest-rerunfailures";
-
version = "14.0";
+
version = "15.0";
format = "pyproject";
-
disabled = pythonOlder "3.7";
+
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-SkALy808ekrRUauK+sEj2Q7KOr4n+Ycl3E2XAoh9LpI=";
+
hash = "sha256-LZrHuvWfTBOscwtH9vqA51XRugWB2kXOMLcvs1QrRHQ=";
};
build-system = [ setuptools ];
···
dependencies = [ packaging ];
nativeCheckInputs = [ pytestCheckHook ];
-
-
disabledTests = [
-
# https://github.com/pytest-dev/pytest-rerunfailures/issues/267
-
"test_run_session_teardown_once_after_reruns"
-
"test_exception_matches_rerun_except_query"
-
"test_exception_not_match_rerun_except_query"
-
"test_exception_matches_only_rerun_query"
-
"test_exception_match_only_rerun_in_dual_query"
-
];
meta = with lib; {
description = "Pytest plugin to re-run tests to eliminate flaky failures";