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

Skip to content

[conftest] Advanced processing of logging #230

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
Prev Previous commit
Next Next commit
conftest is updated [formatting]
  • Loading branch information
dmitry-lipetsk committed Apr 1, 2025
commit 4e100caaf1052e82a5a043956b9e2bc5ab89fb65
20 changes: 10 additions & 10 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,17 +849,17 @@ def LOCAL__print_test_list2(
LOCAL__print_line1_with_header("SUMMARY STATISTICS")
logging.info("")
logging.info("[TESTS]")
logging.info(" TOTAL : {0}".format(TEST_PROCESS_STATS.cTotalTests))
logging.info(" EXECUTED : {0}".format(TEST_PROCESS_STATS.cExecutedTests))
logging.info(" NOT EXECUTED: {0}".format(TEST_PROCESS_STATS.cNotExecutedTests))
logging.info(" ACHTUNG : {0}".format(TEST_PROCESS_STATS.cAchtungTests))
logging.info(" TOTAL : {0}".format(TEST_PROCESS_STATS.cTotalTests))
logging.info(" EXECUTED : {0}".format(TEST_PROCESS_STATS.cExecutedTests))
logging.info(" NOT EXECUTED : {0}".format(TEST_PROCESS_STATS.cNotExecutedTests))
logging.info(" ACHTUNG : {0}".format(TEST_PROCESS_STATS.cAchtungTests))
logging.info("")
logging.info(" PASSED : {0}".format(TEST_PROCESS_STATS.cPassedTests))
logging.info(" FAILED : {0}".format(TEST_PROCESS_STATS.cFailedTests))
logging.info(" XFAILED : {0}".format(TEST_PROCESS_STATS.cXFailedTests))
logging.info(" NOT XFAILED : {0}".format(TEST_PROCESS_STATS.cNotXFailedTests))
logging.info(" SKIPPED : {0}".format(TEST_PROCESS_STATS.cSkippedTests))
logging.info(" UNEXPECTED : {0}".format(TEST_PROCESS_STATS.cUnexpectedTests))
logging.info(" PASSED : {0}".format(TEST_PROCESS_STATS.cPassedTests))
logging.info(" FAILED : {0}".format(TEST_PROCESS_STATS.cFailedTests))
logging.info(" XFAILED : {0}".format(TEST_PROCESS_STATS.cXFailedTests))
logging.info(" NOT XFAILED : {0}".format(TEST_PROCESS_STATS.cNotXFailedTests))
logging.info(" SKIPPED : {0}".format(TEST_PROCESS_STATS.cSkippedTests))
logging.info(" UNEXPECTED : {0}".format(TEST_PROCESS_STATS.cUnexpectedTests))
logging.info("")


Expand Down