delete disable_signals fixture that is not being used

This commit is contained in:
AlanCoding 2017-02-15 15:34:14 -05:00
parent 0e4f3c8015
commit d687ff1be0

View File

@ -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():
'''