Skip to content

Commit 698c38a

Browse files
committed
disable test because of ipykernel bug
see ipython/ipykernel#468
1 parent 7f7adc9 commit 698c38a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

adaptive/tests/test_notebook_integration.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import os
2+
import sys
3+
14
import pytest
25

36
try:
@@ -8,9 +11,13 @@
811
except ImportError:
912
with_notebook_dependencies = False
1013

14+
# XXX: remove when is fixed https://github.com/ipython/ipykernel/issues/468
15+
skip_because_of_bug = os.name == "nt" and sys.version_info[:2] == (3, 8)
16+
1117

1218
@pytest.mark.skipif(
13-
not with_notebook_dependencies, reason="notebook dependencies are not installed"
19+
not with_notebook_dependencies or skip_because_of_bug,
20+
reason="notebook dependencies are not installed",
1421
)
1522
def test_private_api_used_in_live_info():
1623
"""We are catching all errors in

0 commit comments

Comments
 (0)