summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/notebook/notebook-6.3.0.ebuild5
1 files changed, 2 insertions, 3 deletions
diff --git a/dev-python/notebook/notebook-6.3.0.ebuild b/dev-python/notebook/notebook-6.3.0.ebuild
index 0ee849912ef9..79f3213aac14 100644
--- a/dev-python/notebook/notebook-6.3.0.ebuild
+++ b/dev-python/notebook/notebook-6.3.0.ebuild
@@ -58,8 +58,6 @@ python_prepare_all() {
python_test() {
local deselect=(
- # require geckodriver
- notebook/tests/selenium
# trash doesn't seem to work for us
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_checkpoints_follow_file
notebook/services/contents/tests/test_contents_api.py::GenericFileCheckpointsAPITest::test_delete
@@ -73,7 +71,8 @@ python_test() {
notebook/services/kernels/tests/test_kernels_api.py::KernelCullingTest::test_culling
)
- epytest ${deselect[@]/#/--deselect }
+ # selenium tests require geckodriver
+ epytest --ignore notebook/tests/selenium ${deselect[@]/#/--deselect }
}
python_install() {