From d687ff1be084053f08b5e58a895638bb0925c502 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Wed, 15 Feb 2017 15:34:14 -0500 Subject: [PATCH] delete disable_signals fixture that is not being used --- awx/main/tests/functional/conftest.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/awx/main/tests/functional/conftest.py b/awx/main/tests/functional/conftest.py index 165dfed0d6..3d79ca4c4c 100644 --- a/awx/main/tests/functional/conftest.py +++ b/awx/main/tests/functional/conftest.py @@ -56,15 +56,6 @@ def clear_cache(): cache.clear() -@pytest.fixture(scope="session", autouse=False) -def disable_signals(): - ''' - Disable all django model signals. - ''' - mocked = mock.patch('django.dispatch.Signal.send', autospec=True) - mocked.start() - - @pytest.fixture(scope="session", autouse=True) def celery_memory_broker(): '''