mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.packet-python: enable tests
This commit is contained in:
parent
70a6962d06
commit
a02dfde074
@ -5,7 +5,9 @@
|
||||
, python
|
||||
|
||||
# For tests/setup.py
|
||||
, pytest
|
||||
, pytestrunner
|
||||
, requests-mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -17,14 +19,16 @@ buildPythonPackage rec {
|
||||
};
|
||||
nativeBuildInputs = [ pytestrunner ];
|
||||
propagatedBuildInputs = [ requests ];
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytestrunner
|
||||
requests-mock
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover -s test
|
||||
${python.interpreter} setup.py test
|
||||
'';
|
||||
|
||||
# Not all test files are included in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A Python client for the Packet API.";
|
||||
homepage = "https://github.com/packethost/packet-python";
|
||||
|
Loading…
Reference in New Issue
Block a user