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 524beb8 commit 08e06f2Copy full SHA for 08e06f2
allure-robotframework/src/listener/allure_testplan.py
@@ -12,10 +12,12 @@ def __init__(self):
12
def start_suite(self, suite):
13
if self.testplan:
14
# included_tests = [test["selector"] for test in self.testplan]
15
- suite.filter(included_tests=self.included_tests(suite))
+ included_tests = self.included_tests(suite)
16
+ if included_tests:
17
+ suite.filter(included_tests=self.included_tests(suite))
18
19
def included_tests(self, suite):
- included_tests = [""]
20
+ included_tests = []
21
for test in suite.tests:
22
allure_id = None
23
for label in allure_labels(test.tags):
0 commit comments