Skip to content

Commit d50cca0

Browse files
authored
Merge branch 'main' into django_q-no-longer-needs-to-be-installed-even-if-not-used
2 parents 4083069 + bf46942 commit d50cca0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,17 @@ jobs:
3636
run: |
3737
coverage debug sys
3838
coverage debug config
39-
- name: Setup Database
39+
- name: Setup Database and Migrations
4040
run: |
4141
python manage.py makemigrations
4242
python manage.py migrate
4343
- name: Run Tests
4444
run: |
4545
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

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ django-phonenumber-field==8.0.0
55
babel==2.16.0
66
setuptools==73.0.1
77
requests~=2.32.3
8-
django-q2==1.6.2
98
python-dotenv==1.0.1
109
colorama~=0.4.6

0 commit comments

Comments
 (0)