You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+46
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,52 @@ param teardown
81
81
* If an exception occurs in setup, the test will report Error and not run. The teardown will also not run.
82
82
* If an exception occurs in teardown, the LAST parametrized test case to run results in BOTH PASS and Error. This is weird, but consistent with pytest fixtures.
83
83
84
+
85
+
## You can combine setup and teardown in one function
86
+
87
+
You can provide a function separated by a `yield` to put both setup and teardown in one function.
88
+
89
+
However, there's a trick to doing this:
90
+
91
+
* Either, pass `None` as the teardown.
92
+
* Or use `with_args`, as in `@pytest.mark.param_scope.with_args(my_func)`
0 commit comments