nixpkgs/pkgs/development/python-modules/flaky/default.nix
Martin Weinelt 7373272e86 python310Packages.flaky: Drop nose tests
Nose tests is not getting updated for python3 and shouldn't be used
anymore. In fact it can't be used on pypy, since it does not come with a
2to3 utility.
2023-04-09 13:24:12 +02:00

38 lines
848 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest
}:
buildPythonPackage rec {
pname = "flaky";
version = "3.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-OtEAeAchoZEfV6FlgJt+omWnhjMFrLZnCCIIIMr4qg0=";
};
nativeCheckInputs = [
mock
pytest
];
checkPhase = ''
# based on tox.ini
pytest -k 'example and not options' --doctest-modules test/test_pytest/
pytest -k 'example and not options' test/test_pytest/
pytest -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py
pytest --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py
'';
meta = with lib; {
homepage = "https://github.com/box/flaky";
description = "Plugin for nose or py.test that automatically reruns flaky tests";
license = licenses.asl20;
};
}