pythonPackages.pytestcov: 2.2.0 -> 2.3.1
This commit is contained in:
parent
4b820b842b
commit
ad633d39dd
|
@ -4822,14 +4822,19 @@ in modules // {
|
||||||
};
|
};
|
||||||
|
|
||||||
pytestcov = buildPythonPackage (rec {
|
pytestcov = buildPythonPackage (rec {
|
||||||
name = "pytest-cov-2.2.0";
|
name = "pytest-cov-2.3.1";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/p/pytest-cov/${name}.tar.gz";
|
url = "mirror://pypi/p/pytest-cov/${name}.tar.gz";
|
||||||
sha256 = "1lf9jsmhqk5nc4w3kzwglmdzjvmi7ajvrsnwv826j3bn0wzx8c92";
|
sha256 = "fa0a212283cdf52e2eecc24dd6459bb7687cc29adb60cb84258fab73be8dda0f";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ covCore pytest ];
|
buildInputs = with self; [ covCore pytest virtualenv process-tests helper ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
checkPhase = ''
|
||||||
|
py.test tests
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing";
|
||||||
|
|
Loading…
Reference in New Issue