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
commit 61717662e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,8 +40,12 @@ buildPythonPackage rec {
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 = ''
export HOME=$(mktemp -d)
pytest tests --ignore tests/test_timeouts.py
'';