Skip to content

Commit 0acf697

Browse files
author
Dzmitry Humianiuk
authored
Merge pull request #82 from rplevka/fix_reportportal_enabled
fixed the attribute name _reportportal_enabled to _reportportal_configured
2 parents e45ab8d + 707936e commit 0acf697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_reportportal/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def is_master(config):
2929

3030
@pytest.mark.optionalhook
3131
def pytest_configure_node(node):
32-
if node.config._reportportal_enabled is False:
32+
if node.config._reportportal_configured is False:
3333
# Stop now if the plugin is not properly configured
3434
return
3535
node.slaveinput['py_test_service'] = pickle.dumps(node.config.py_test_service)

0 commit comments

Comments
 (0)