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 20751fe commit db6a1b9Copy full SHA for db6a1b9
tests/test_examples/conftest.py
@@ -1,8 +1,8 @@
1
-
2
import pytest
3
4
5
@pytest.fixture(scope="session")
6
def examples_path():
7
from pathlib import Path
+
8
return Path(__file__).parents[2] / "examples"
tests/test_examples/test_examples.py
@@ -1,4 +1,3 @@
from tests.utils import run_notebook
tests/utils/jupyter.py
@@ -1,7 +1,7 @@
import nbformat
from nbconvert.preprocessors import ExecutePreprocessor
def run_notebook(path):
with open(str(path)) as f:
nb = nbformat.read(f, nbformat.NO_CONVERT)
0 commit comments