Skip to content

Commit 7e9c534

Browse files
committed
Comments update
1 parent 5edba1b commit 7e9c534

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

conftest.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,16 @@ def log_folder_setup(config):
101101
shutil.rmtree(archived_logs)
102102

103103

104+
def pytest_unconfigure():
105+
""" This runs after all tests have completed with pytest """
106+
pass
107+
108+
104109
def pytest_runtest_setup():
105-
# A placeholder for a method that runs before every test with pytest
110+
""" This runs before every test with pytest """
106111
pass
107112

108113

109114
def pytest_runtest_teardown():
110-
# A placeholder for a method that runs after every test with pytest
115+
""" This runs after every test with pytest """
111116
pass

0 commit comments

Comments
 (0)