You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expose fixtures to change Django's {Transaction,}TestCase
This adds `django_db_testcase` and `django_transactional_db_testcase`,
which allows to override them to e.g. enable the `multi_db` feature:
```
@pytest.fixture
def django_db_testcase(django_db_testcase):
django_db_testcase.multi_db = True
return django_db_testcase
```
Ref: pytest-dev#397
0 commit comments