From 7e9c53448d393d3d3d2cc15e46c898fcd94711fd Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Tue, 16 Feb 2016 15:37:08 -0500 Subject: [PATCH] Comments update --- conftest.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/conftest.py b/conftest.py index 090a84b0..12c910f5 100755 --- a/conftest.py +++ b/conftest.py @@ -101,11 +101,16 @@ def log_folder_setup(config): shutil.rmtree(archived_logs) +def pytest_unconfigure(): + """ This runs after all tests have completed with pytest """ + pass + + def pytest_runtest_setup(): - # A placeholder for a method that runs before every test with pytest + """ This runs before every test with pytest """ pass def pytest_runtest_teardown(): - # A placeholder for a method that runs after every test with pytest + """ This runs after every test with pytest """ pass