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 7f528d9 commit 3f4733fCopy full SHA for 3f4733f
protoplaster/runner/runner.py
@@ -19,8 +19,6 @@
19
20
TOP_LEVEL_TEMPLATE_PATH = "template.md"
21
22
-LOG_PATH = str(os.getenv("HOME")) + "/.local/share/protoplaster.log"
23
-
24
25
def list_tests(args):
26
test_file = TestFile(args.test_dir, args.test_file, args.custom_tests)
@@ -184,7 +182,8 @@ def run_tests(args):
184
182
plugins.append(csv_report_gen)
185
183
186
if args.log:
187
- log_report_gen = LogGenerator(LOG_PATH)
+ log_report_gen = LogGenerator(
+ f"{args.artifacts_dir}/protoplaster.log")
188
plugins.append(log_report_gen)
189
190
ret = pytest.main(prepare_pytest_args(test_modules, args),
0 commit comments