Teardown after all tests have run #2326
Answered
by
mdmintz
drFrankWhite
asked this question in
Q&A
-
Each of my test classes has its own teardown, but how do I write a teardown that runs once all tests finish? Similar to Pytest's |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Nov 29, 2023
Replies: 1 comment
-
To have a special tearDown after all tests have run, override Looks like someone did something like that here: #317 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To have a special tearDown after all tests have run, override
tearDownClass()
, similar to how Syntax Format 2 overridestearDown()
in SeleniumBase/examples/boilerplates/base_test_case.pyLooks like someone did something like that here: #317 (comment)