2018-04-03 11:51:10 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-02-14 10:10:24 +00:00
|
|
|
, pytest, coverage }:
|
2018-04-03 11:51:10 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-cov";
|
2020-06-06 07:47:27 +01:00
|
|
|
version = "2.9.0";
|
2018-04-03 11:51:10 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:27 +01:00
|
|
|
sha256 = "b6a814b8ed6247bd81ff47f038511b57fe1ce7f4cc25b9106f1a4b106f1d9322";
|
2018-04-03 11:51:10 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 10:10:24 +00:00
|
|
|
buildInputs = [ pytest ];
|
2018-04-03 11:51:10 +01:00
|
|
|
propagatedBuildInputs = [ coverage ];
|
|
|
|
|
|
|
|
# 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
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-cov";
|
2018-04-03 11:51:10 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|