File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,17 @@ jobs:
36
36
run : |
37
37
coverage debug sys
38
38
coverage debug config
39
- - name : Setup Database
39
+ - name : Setup Database and Migrations
40
40
run : |
41
41
python manage.py makemigrations
42
42
python manage.py migrate
43
43
- name : Run Tests
44
44
run : |
45
45
python manage.py test appointment.tests --parallel=10 --shuffle --verbosity=2
46
+ - name : Install tblib for better error reporting
47
+ if : failure()
48
+ run : pip install tblib
49
+ - name : Rerun failed tests with tblib
50
+ if : failure()
51
+ run : |
52
+ python manage.py test appointment.tests --parallel=10 --shuffle --verbosity=2
Original file line number Diff line number Diff line change @@ -5,6 +5,5 @@ django-phonenumber-field==8.0.0
5
5
babel == 2.16.0
6
6
setuptools == 73.0.1
7
7
requests ~= 2.32.3
8
- django-q2 == 1.6.2
9
8
python-dotenv == 1.0.1
10
9
colorama ~= 0.4.6
You can’t perform that action at this time.
0 commit comments