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 5f2c2da commit 80bedbfCopy full SHA for 80bedbf
src/pytest_ansible_network_integration/__init__.py
@@ -278,8 +278,8 @@ def ansible_project(
278
inventory=inventory_path,
279
directory=tmp_path,
280
role=integration_test_path.name,
281
- log_file=Path(f"~/test_logs/{integration_test_path.name}.log").resolve(),
282
- playbook_artifact=Path(f"~/test_logs/{integration_test_path.name}.json").resolve(),
+ log_file=Path.home() / "test_logs" / "{integration_test_path.name}.log",
+ playbook_artifact=Path.home() / "test_logs" / "{integration_test_path.name}.json",
283
)
284
285
0 commit comments