pythonPackages.fake_factory: refactor disable tests (for good reason)

This commit is contained in:
Chris Ostrouchov 2018-11-29 13:24:43 -05:00 committed by Frederik Rietdijk
parent 99b5abef81
commit 0ae8b4868c

View File

@ -18,6 +18,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ six dateutil ipaddress mock ];
# fake-factory is depreciated and single test will always fail
doCheck = false;
checkPhase = ''
${python.interpreter} -m unittest faker.tests
'';