2021-06-28 23:13:55 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytest
|
|
|
|
, coverage
|
|
|
|
, toml
|
2022-02-10 20:34:41 +00:00
|
|
|
, tomli
|
2021-06-28 23:13:55 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-cov";
|
2023-08-10 07:59:29 +00:00
|
|
|
version = "4.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-08-10 07:59:29 +00:00
|
|
|
hash = "sha256-OQSxPfv+xH8AO453/VtYnNEZBKId3xqzimTyBNahDvY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
propagatedBuildInputs = [ coverage toml tomli ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# xdist related tests fail with the following error
|
|
|
|
# OSError: [Errno 13] Permission denied: 'py/_code'
|
|
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
|
|
# allow to find the module helper during the test run
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$PWD/tests
|
|
|
|
py.test tests
|
|
|
|
'';
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
pythonImportsCheck = [ "pytest_cov" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
|
|
|
homepage = "https://github.com/pytest-dev/pytest-cov";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|