Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/guides/results/_quick_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
import sys
from pathlib import Path

results_path = Path("output") / "results_folder"
from autoconf.test_mode import with_test_mode_segment

results_path = with_test_mode_segment(Path("output")) / "results_folder"
if results_path.exists():
sys.exit(0)

Expand Down
Loading
Loading