Skip to content

Commit 5e40554

Browse files
committed
fix: adjust output_dir to be correct
1 parent 004ffdb commit 5e40554

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def demos_folder(tmp_path_factory: TempPathFactory) -> Path:
2424
@pytest.fixture(scope="session")
2525
def robust_demo(
2626
request: FixtureRequest,
27+
demos_folder: Path,
2728
robust_demo__path: Path,
2829
robust_demo__extra_context: dict[str, Any],
2930
robust_demo__is_setup: bool
@@ -32,7 +33,7 @@ def robust_demo(
3233
str(REPO_FOLDER),
3334
no_input=True,
3435
overwrite_if_exists=True,
35-
output_dir=robust_demo__path,
36+
output_dir=demos_folder,
3637
extra_context=robust_demo__extra_context,
3738
)
3839
if robust_demo__is_setup:

0 commit comments

Comments
 (0)