Skip to content

Commit

Permalink
pytest: drop internal fixtures
Browse files Browse the repository at this point in the history
See
pytest-dev/pytest-django@e540ace
for associated code changes.
  • Loading branch information
dwaynebailey committed Aug 5, 2016
1 parent c7af552 commit 47bfe00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytest_pootle/fixtures/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def setup_db_if_needed(request):


@pytest.fixture(scope='session')
def post_db_setup(translations_directory, _django_db_setup,
_django_cursor_wrapper, request):
def post_db_setup(translations_directory, django_db_setup,
django_db_blocker, request):
"""Sets up the site DB for the test session."""
with _django_cursor_wrapper:
with django_db_blocker:
PootleTestEnv(request).setup()


Expand Down

0 comments on commit 47bfe00

Please sign in to comment.