From 7c452d0c6f9a10650b0f9a776d66d3db32d43880 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 21 Apr 2021 08:03:01 -0400 Subject: [PATCH] tests: Remove debug print statement in conftest.py --- monkey/tests/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/monkey/tests/conftest.py b/monkey/tests/conftest.py index 89de33109..81806ef69 100644 --- a/monkey/tests/conftest.py +++ b/monkey/tests/conftest.py @@ -8,9 +8,6 @@ MONKEY_BASE_PATH = str(Path(__file__).parent.parent) sys.path.insert(0, MONKEY_BASE_PATH) -print("imported") - - @pytest.fixture(scope="session") def resources_dir(pytestconfig): return os.path.join(pytestconfig.rootdir, "monkey", "tests", "resources")