2018-04-03 12:51:10 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-02-14 11:10:24 +01:00
|
|
|
, pytest, coverage }:
|
2018-04-03 12:51:10 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-cov";
|
2019-10-24 08:47:45 +02:00
|
|
|
version = "2.8.1";
|
2018-04-03 12:51:10 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:45 +02:00
|
|
|
sha256 = "cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b";
|
2018-04-03 12:51:10 +02:00
|
|
|
};
|
|
|
|
|
2019-02-14 11:10:24 +01:00
|
|
|
buildInputs = [ pytest ];
|
2018-04-03 12:51:10 +02: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 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-cov";
|
2018-04-03 12:51:10 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|