Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d4b347a

Browse files
committedOct 22, 2024·
chore(tests): remove databases specification
This is no longer needed since we no loger use multiple databases.
1 parent 4620096 commit d4b347a

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed
 

‎weblate_web/payments/tests.py

-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,6 @@ def test_vat_calculation(self):
190190
FIO_TOKEN="test-token", # noqa: S106
191191
)
192192
class BackendTest(TestCase):
193-
databases = "__all__"
194-
195193
def setUp(self):
196194
super().setUp()
197195
self.customer = Customer.objects.create(**CUSTOMER)

‎weblate_web/tests.py

-3
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@ def create_payment(*, recurring="y", user, **kwargs):
440440

441441

442442
class FakturaceTestCase(TestCase):
443-
databases = "__all__"
444443
credentials = {
445444
"username": "testuser",
446445
"password": "testpassword",
@@ -829,8 +828,6 @@ def test_future(self):
829828

830829

831830
class APITest(TestCase):
832-
databases = "__all__"
833-
834831
def test_hosted(self):
835832
Package.objects.create(name="community", verbose="Community support", price=0)
836833
Package.objects.create(name="shared:test", verbose="Test package", price=0)

0 commit comments

Comments
 (0)
Please sign in to comment.