mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
7373272e86
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.
37 lines
848 B
Nix
37 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;
|
|
};
|
|
|
|
}
|