1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

linkchecker: fix darwin build

This commit is contained in:
Eric Sagnes 2017-02-26 20:21:24 +09:00 committed by Franz Pletz
parent e3f18ec9a3
commit b4d8eddf48

View file

@ -26,6 +26,10 @@ python2Packages.buildPythonApplication rec {
checkPhase = ''
# the mime test fails for me...
rm tests/test_mimeutil.py
${lib.optionalString stdenv.isDarwin ''
# network tests fails on darwin
rm tests/test_network.py
''}
make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/logger/test_*.py"
'';