ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / oslotest / tests.nix
blob542e9467d16fb84920928a3de5679a72ac630d1b
1 { buildPythonPackage
2 , oslo-config
3 , oslotest
4 , stestr
5 }:
7 buildPythonPackage rec {
8   pname = "oslotest-tests";
9   inherit (oslotest) version;
11   src = oslotest.src;
13   postPatch = ''
14     # only a small portion of the listed packages are actually needed for running the tests
15     # so instead of removing them one by one remove everything
16     rm test-requirements.txt
17   '';
19   dontBuild = true;
20   dontInstall = true;
22   checkInputs = [
23     oslotest
24     oslo-config
25     stestr
26   ];
28   checkPhase = ''
29     stestr run
30   '';