We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7adc9 commit 698c38aCopy full SHA for 698c38a
adaptive/tests/test_notebook_integration.py
@@ -1,3 +1,6 @@
1
+import os
2
+import sys
3
+
4
import pytest
5
6
try:
@@ -8,9 +11,13 @@
8
11
except ImportError:
9
12
with_notebook_dependencies = False
10
13
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
17
18
@pytest.mark.skipif(
- 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",
21
)
22
def test_private_api_used_in_live_info():
23
"""We are catching all errors in
0 commit comments