mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-17 00:08:36 -05:00
parallelize test running
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import pytest
|
||||
from mock import PropertyMock
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def _disable_database_settings(mocker):
|
||||
m = mocker.patch('awx.conf.settings.SettingsWrapper.all_supported_settings', new_callable=PropertyMock)
|
||||
m.return_value = []
|
||||
|
||||
Reference in New Issue
Block a user