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 dd7762d commit a403b17Copy full SHA for a403b17
test/tck/environment.py
@@ -43,7 +43,7 @@ def before_scenario(context, scenario):
43
def after_feature(context, feature):
44
failed_scenarios = []
45
for scenario in feature.scenarios:
46
- if scenario.status != "passed":
+ if scenario.status == "untested" or scenario.status == "failed" :
47
failed_scenarios.append(scenario.name)
48
if len(failed_scenarios) > 0:
49
failing_features[feature.name] = failed_scenarios
@@ -56,5 +56,5 @@ def after_all(context):
56
print("Feature: %s" %feature)
57
for scenario in list_of_scenarios:
58
print("Failing scenario: %s" % scenario)
59
- raise Exception("TCK FAILED!")
+ raise Exception("\tTCK FAILED!")
60
0 commit comments