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