We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5edba1b commit 7e9c534Copy full SHA for 7e9c534
conftest.py
@@ -101,11 +101,16 @@ def log_folder_setup(config):
101
shutil.rmtree(archived_logs)
102
103
104
+def pytest_unconfigure():
105
+ """ This runs after all tests have completed with pytest """
106
+ pass
107
+
108
109
def pytest_runtest_setup():
- # A placeholder for a method that runs before every test with pytest
110
+ """ This runs before every test with pytest """
111
pass
112
113
114
def pytest_runtest_teardown():
- # A placeholder for a method that runs after every test with pytest
115
+ """ This runs after every test with pytest """
116
0 commit comments