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 c008597 commit ae9aa91Copy full SHA for ae9aa91
allure-pytest/src/plugin.py
@@ -2,6 +2,7 @@
2
3
import allure
4
import allure_commons
5
+import os
6
7
from allure_commons.types import LabelType
8
from allure_commons.logger import AllureFileLogger
@@ -115,6 +116,7 @@ def pytest_configure(config):
115
116
config.add_cleanup(cleanup_factory(test_helper))
117
118
if report_dir:
119
+ report_dir = os.path.abspath(report_dir)
120
test_listener = AllureListener(config)
121
config.pluginmanager.register(test_listener)
122
allure_commons.plugin_manager.register(test_listener)
0 commit comments