From d5f67840c24a9730bac6067ff2ac017f45cc58c4 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Fri, 13 Dec 2019 14:08:18 +0100 Subject: [PATCH] [Reformat] Run isort and black --- biscuit/core/tests/browser/test_selenium.py | 1 - biscuit/core/tests/models/test_person.py | 1 - biscuit/core/tests/views/test_account.py | 1 - 3 files changed, 3 deletions(-) diff --git a/biscuit/core/tests/browser/test_selenium.py b/biscuit/core/tests/browser/test_selenium.py index fcfa478a9..4fff999ca 100644 --- a/biscuit/core/tests/browser/test_selenium.py +++ b/biscuit/core/tests/browser/test_selenium.py @@ -6,7 +6,6 @@ from django.urls import reverse import pytest - pytestmark = pytest.mark.django_db SeleniumTestCaseBase.external_host = os.environ.get("TEST_HOST", "") or None diff --git a/biscuit/core/tests/models/test_person.py b/biscuit/core/tests/models/test_person.py index afe29db35..62861ae1d 100644 --- a/biscuit/core/tests/models/test_person.py +++ b/biscuit/core/tests/models/test_person.py @@ -2,7 +2,6 @@ import pytest from biscuit.core.models import Person - pytestmark = pytest.mark.django_db diff --git a/biscuit/core/tests/views/test_account.py b/biscuit/core/tests/views/test_account.py index 5fd9dbf8e..48cf07028 100644 --- a/biscuit/core/tests/views/test_account.py +++ b/biscuit/core/tests/views/test_account.py @@ -3,7 +3,6 @@ from django.urls import reverse import pytest - pytestmark = pytest.mark.django_db -- GitLab