diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index 704bc21d7e1..b9a336f7fbe 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -5,6 +5,7 @@ , ipykernel , jupyter_client , nbformat +, pytestCheckHook , pytest , six , glibcLocales @@ -23,7 +24,7 @@ buildPythonPackage rec { }; checkInputs = [ - pytest + pytestCheckHook matplotlib sympy pytestcov @@ -40,14 +41,15 @@ buildPythonPackage rec { six ]; - # 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 - ''; + pytestFlagsArray = [ + "tests" + # These are the main tests but they're fragile so skip them. They error + # whenever matplotlib outputs any unexpected warnings, e.g. deprecation + # warnings. + "--ignore=tests/test_unit_tests_in_notebooks.py" + # Impure + "--ignore=tests/test_timeouts.py" + ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true;