pythonPackages.supervisor: fix tests
This commit is contained in:
parent
98ddcfe794
commit
5d761d985b
1 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
||||
{ stdenv, lib, buildPythonPackage, isPy3k, fetchPypi
|
||||
, mock
|
||||
, meld3
|
||||
, pytest
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
|
@ -13,7 +14,13 @@ buildPythonPackage rec {
|
|||
sha256 = "02pindhq84hb9a7ykyaqw8i2iqb21h69lpmclyqh7fm1446rji4n";
|
||||
};
|
||||
|
||||
checkInputs = [ mock ];
|
||||
# wants to write to /tmp/foo which is likely already owned by another
|
||||
# nixbld user on hydra
|
||||
doCheck = !stdenv.isDarwin;
|
||||
checkInputs = [ mock pytest ];
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ meld3 setuptools ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue