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 83e593d commit 2afb00cCopy full SHA for 2afb00c
tests/lib/prove.py
@@ -81,6 +81,7 @@ def prove(self, test_path):
81
grp_log = read_file(self.loggedfs_log_abs_path)
82
83
pass_condition = all([
84
+ status, # ASSERT BELOW!
85
len_failed == 0, # ASSERT BELOW!
86
len_expected == (len_passed + len_passed_todo + len_failed + len_failed_todo), # ASSERT BELOW!
87
len_expected != 0, # ASSERT BELOW!
@@ -126,6 +127,7 @@ def prove(self, test_path):
126
127
128
self.__clear_loggedfs_log__()
129
130
+ assert status # ASSERT ABOVE!
131
assert len_failed == 0 # ASSERT ABOVE!
132
assert len_expected == (len_passed + len_passed_todo + len_failed + len_failed_todo) # ASSERT ABOVE!
133
assert len_expected != 0 # ASSERT ABOVE!
0 commit comments