Merge pull request #99475 from acairncross/fix-nbval

python3Packages.nbval: Fix tests
This commit is contained in:
Martin Weinelt
2020-10-03 17:26:27 +02:00
committed by GitHub
@@ -40,8 +40,12 @@ buildPythonPackage rec {
six six
]; ];
# ignore impure tests # Set HOME so that matplotlib doesn't try to use
# /homeless-shelter/.config/matplotlib, otherwise some of the tests fail for
# having an unexpected warning on stderr produced by matplotlib.
# Ignore impure tests.
checkPhase = '' checkPhase = ''
export HOME=$(mktemp -d)
pytest tests --ignore tests/test_timeouts.py pytest tests --ignore tests/test_timeouts.py
''; '';