forked from mirrors/nixpkgs
python3Packages.venusian: add pytestcov test dependency
This commit is contained in:
parent
4f0ff75060
commit
2b1370a353
|
@ -2,6 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
, pytestcov
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -13,7 +14,7 @@ buildPythonPackage rec {
|
|||
sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkInputs = [ pytest pytestcov ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
|
|
Loading…
Reference in a new issue