summaryrefslogtreecommitdiff
path: root/dev-python/nbclient
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/nbclient')
-rw-r--r--dev-python/nbclient/nbclient-0.7.0.ebuild7
1 files changed, 7 insertions, 0 deletions
diff --git a/dev-python/nbclient/nbclient-0.7.0.ebuild b/dev-python/nbclient/nbclient-0.7.0.ebuild
index 47276a27e722..2854a093240d 100644
--- a/dev-python/nbclient/nbclient-0.7.0.ebuild
+++ b/dev-python/nbclient/nbclient-0.7.0.ebuild
@@ -45,3 +45,10 @@ EPYTEST_DESELECT=(
nbclient/tests/test_client.py::test_many_parallel_notebooks
'nbclient/tests/test_client.py::test_run_all_notebooks[Interrupt.ipynb-opts6]'
)
+
+python_test() {
+ # The tests run the pydevd debugger, the debugger prints a warning
+ # in python3.11 when frozen modules are being used.
+ # This warning makes the tests fail, silence it.
+ PYDEVD_DISABLE_FILE_VALIDATION=1 epytest
+}