File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 46
46
drf-version : ' 3.14'
47
47
- django-version : ' 5.1'
48
48
drf-version : ' 3.14'
49
-
49
+
50
50
steps :
51
51
- uses : actions/checkout@v4
52
52
- name : Set up Python ${{ matrix.python-version }}
@@ -81,24 +81,21 @@ jobs:
81
81
- name : Install djangorestframework
82
82
run : |
83
83
poetry install -E djangorestframework
84
- poetry run pip install -U "Django~=${{ matrix.django-version }}"
85
- poetry run pip install -U "djangorestframework~=${{ matrix.drf-version }}"
84
+ poetry run pip install -U "Django~=${{ matrix.django-version }}" "djangorestframework~=${{ matrix.drf-version }}"
86
85
- name : Run Unit Tests w/ djangorestframework
87
86
run : |
88
87
poetry run pytest --cov-fail-under=30
89
88
- name : Install django-filters
90
89
run : |
91
90
poetry install -E filters
92
- poetry run pip install -U "Django~=${{ matrix.django-version }}"
93
- poetry run pip install -U "djangorestframework~=${{ matrix.drf-version }}"
91
+ poetry run pip install -U "Django~=${{ matrix.django-version }}" "djangorestframework~=${{ matrix.drf-version }}"
94
92
- name : Run Unit Tests w/ django-filter
95
93
run : |
96
94
poetry run pytest --cov-fail-under=30
97
95
- name : Install all deps
98
96
run : |
99
97
poetry install -E all
100
- poetry run pip install -U "Django~=${{ matrix.django-version }}"
101
- poetry run pip install -U "djangorestframework~=${{ matrix.drf-version }}"
98
+ poetry run pip install -U "Django~=${{ matrix.django-version }}" "djangorestframework~=${{ matrix.drf-version }}"
102
99
- name : Run Full Unit Tests
103
100
run : |
104
101
poetry run pytest
You can’t perform that action at this time.
0 commit comments