Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1f2bb2

Browse files
conftest is updated
An assert for "unexpected" finish of test is deleted. We must avoid creating a such problem in our infrastructure.
1 parent f5b293f commit f1f2bb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ def helper__makereport__call(
365365
else:
366366
TEST_PROCESS_STATS.incrementUnexpectedTests()
367367
exitStatus = "UNEXPECTED [{0}]".format(rep.outcome)
368-
assert False
368+
# [2025-03-28] It may create a useless problem in new environment.
369+
# assert False
369370

370371
# --------
371372
logging.info("*")

0 commit comments

Comments
 (0)