Skip to content

Commit

Permalink
Allow existing directory
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoCeratto authored and Federico Ceratto committed Jun 22, 2023
1 parent 7796f9f commit 4eb645b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def run_fastpath(log, repo_dir: Path, clickhouse_url: str) -> None:
"""Run fastpath from S3"""
fpdir = repo_dir / "fastpath"
conffile = fpdir / "etc/ooni/fastpath.conf"
conffile.parent.mkdir(parents=True)
conffile.parent.mkdir(parents=True, exist_ok=True)
conf = f"""
[DEFAULT]
collectors = localhost
Expand Down

0 comments on commit 4eb645b

Please sign in to comment.