mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
Re-activated SQLite restriction. Test passes in pg.
This commit is contained in:
parent
2fdf55ec1b
commit
debd9b8850
@ -862,10 +862,7 @@ class InventoryImportTest(BaseCommandMixin, BaseLiveServerTest):
|
||||
self.assertNotEqual(new_inv.total_groups, 0)
|
||||
self.assertElapsedLessThan(30)
|
||||
|
||||
@unittest.skipIf(getattr(settings, 'LOCAL_DEVELOPMENT', False),
|
||||
'Skip this test in local development environments, '
|
||||
'which may vary widely on memory.')
|
||||
@unittest.skipIf(settings.DATABASES['default']['ENGINE'] == 'django.db.backends.sqlite3',
|
||||
@unittest.skipIf(hasattr(django.db.backend, 'sqlite3'),
|
||||
'Skip this test if we are on sqlite')
|
||||
def test_splunk_inventory(self):
|
||||
new_inv = self.organizations[0].inventories.create(name='splunk')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user