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

Skip to content

conftest.py is updated [refactoring] #226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
conftest is updated
An assert for "unexpected" finish of test is deleted.

We must avoid creating a such problem in our infrastructure.
  • Loading branch information
dmitry-lipetsk committed Mar 28, 2025
commit f1f2bb24e60b0055425b6f63797019ec6b3578bb
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ def helper__makereport__call(
else:
TEST_PROCESS_STATS.incrementUnexpectedTests()
exitStatus = "UNEXPECTED [{0}]".format(rep.outcome)
assert False
# [2025-03-28] It may create a useless problem in new environment.
# assert False

# --------
logging.info("*")
Expand Down