We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 004ffdb commit 5e40554Copy full SHA for 5e40554
tests/conftest.py
@@ -24,6 +24,7 @@ def demos_folder(tmp_path_factory: TempPathFactory) -> Path:
24
@pytest.fixture(scope="session")
25
def robust_demo(
26
request: FixtureRequest,
27
+ demos_folder: Path,
28
robust_demo__path: Path,
29
robust_demo__extra_context: dict[str, Any],
30
robust_demo__is_setup: bool
@@ -32,7 +33,7 @@ def robust_demo(
32
33
str(REPO_FOLDER),
34
no_input=True,
35
overwrite_if_exists=True,
- output_dir=robust_demo__path,
36
+ output_dir=demos_folder,
37
extra_context=robust_demo__extra_context,
38
)
39
if robust_demo__is_setup:
0 commit comments