Skip to content

Commit

Permalink
adjust test_trial_error
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Nov 9, 2019
1 parent 41f49bd commit 216d874
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions testing/test_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,24 +537,31 @@ def f(_):
)
result.stdout.fnmatch_lines(
[
"test_trial_error.py::TC::test_four FAILED",
"test_trial_error.py::TC::test_four SKIPPED",
"test_trial_error.py::TC::test_four ERROR",
"test_trial_error.py::TC::test_one FAILED",
"test_trial_error.py::TC::test_three FAILED",
"test_trial_error.py::TC::test_two FAILED",
"test_trial_error.py::TC::test_two SKIPPED",
"test_trial_error.py::TC::test_two ERROR",
"*ERRORS*",
"*_ ERROR at teardown of TC.test_four _*",
"*DelayedCalls*",
"*_ ERROR at teardown of TC.test_two _*",
"*DelayedCalls*",
"*= FAILURES =*",
"*_ TC.test_four _*",
"*NameError*crash*",
# "*_ TC.test_four _*",
# "*NameError*crash*",
"*_ TC.test_one _*",
"*NameError*crash*",
"*_ TC.test_three _*",
"*DelayedCalls*",
"*_ TC.test_two _*",
"*NameError*crash*",
"*= 4 failed, 1 error in *",
# "*_ TC.test_two _*",
# "*NameError*crash*",
# "*= warnings summary =*",
# "test_trial_error.py::TC::test_four",
# "test_trial_error.py::TC::test_two",
# " You need to install a suitable plugin for your async framework, for example:",
"*= 2 failed, 2 skipped, 2 error in *",
]
)

Expand Down

0 comments on commit 216d874

Please sign in to comment.