You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using unittest with html test runner - when i execute a subtest - i can see the results (pass/fail) but i cannot see the view button / details of the subtest.
What I Did
This is how i am executing a subtest - am loading data from json
def test_2_Check(self):
for x in path5_data:
with self.subTest(msg = x["name"]):
result = playground_obj.path5(x["path"],
x["barcode"],
x["ce"],
x["dl"],
x["art"],
x["rts"],
x["other"],
x["zip"])
print('test')
if result[0] == False:
assert False, result[1]
else:
pass
The text was updated successfully, but these errors were encountered:
Description
I am using unittest with html test runner - when i execute a subtest - i can see the results (pass/fail) but i cannot see the view button / details of the subtest.
What I Did
This is how i am executing a subtest - am loading data from json
def test_2_Check(self):
The text was updated successfully, but these errors were encountered: