nixpkgs/pkgs/development/python-modules/python-manilaclient/tests.nix

35 lines
515 B
Nix

{
buildPythonPackage,
ddt,
fixtures,
python-manilaclient,
python-openstackclient,
requests-mock,
stestr,
tempest,
testtools,
}:
buildPythonPackage {
pname = "python-manilaclient-tests";
inherit (python-manilaclient) version src;
pyproject = false;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
ddt
fixtures
python-manilaclient
python-openstackclient
requests-mock
stestr
tempest
testtools
];
checkPhase = ''
stestr run
'';
}