Skip to content

Commit 8181a05

Browse files
committed
fix(ci): remove useless tests file
1 parent 4063044 commit 8181a05

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

config/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@
195195
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
196196

197197
# Custom Model to use for authentication
198-
AUTH_USER_MODEL = 'users.CustomUser'
198+
# AUTH_USER_MODEL = 'users.CustomUser'

profiles/tests.py

-3
This file was deleted.

profiles/tests/test_athletes.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.test import TestCase
2+
3+
4+
class AthletesTest(TestCase):
5+
pass

profiles/tests/test_sport_doctors.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.test import TestCase
2+
3+
4+
class SportDoctorsTest(TestCase):
5+
pass

profiles/tests/test_trainers.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.test import TestCase
2+
3+
4+
class TrainersTest(TestCase):
5+
pass

0 commit comments

Comments
 (0)