mirror of
https://github.com/ansible/awx.git
synced 2026-03-18 01:17:35 -02:30
Remove the django_db mark from TransactionTestCase classes
pytest-django's documentation indicates that it isn't necessary, and it turns out in Django 2.0+ that this double application of the transaction machinations was causing the Django ContentType table to lose its items.
This commit is contained in:
@@ -20,7 +20,6 @@ from django.test import TransactionTestCase
|
|||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
|
||||||
class TestWorkflowDAGFunctional(TransactionTestCase):
|
class TestWorkflowDAGFunctional(TransactionTestCase):
|
||||||
def workflow_job(self, states=['new', 'new', 'new', 'new', 'new']):
|
def workflow_job(self, states=['new', 'new', 'new', 'new', 'new']):
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ from awx.main.models import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
|
||||||
class TestCapacityMapping(TransactionTestCase):
|
class TestCapacityMapping(TransactionTestCase):
|
||||||
|
|
||||||
def sample_cluster(self):
|
def sample_cluster(self):
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ from awx.main.access import UserAccess, RoleAccess, TeamAccess
|
|||||||
from awx.main.models import User, Organization, Inventory
|
from awx.main.models import User, Organization, Inventory
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
|
||||||
class TestSysAuditorTransactional(TransactionTestCase):
|
class TestSysAuditorTransactional(TransactionTestCase):
|
||||||
def rando(self):
|
def rando(self):
|
||||||
return User.objects.create(username='rando', password='rando', email='rando@com.com')
|
return User.objects.create(username='rando', password='rando', email='rando@com.com')
|
||||||
|
|||||||
Reference in New Issue
Block a user