add media files to production compose

This commit is contained in:
godd0t
2023-05-10 13:19:19 +02:00
parent 1ae2664984
commit 70a802350a
25 changed files with 129 additions and 123 deletions

View File

@@ -13,7 +13,5 @@ def enable_db_access_for_all_tests(db):
@pytest.fixture
def test_user():
return User.objects.create_user(
username='test_user',
email="test_user@test.com",
password="test_password"
username="test_user", email="test_user@test.com", password="test_password"
)

View File

@@ -1,5 +1,3 @@
def test_example(test_user):
assert test_user.username == 'test_user'
assert test_user.username == "test_user"
assert test_user.email is not None