Skip to content

Commit e476f3e

Browse files
author
Ivan Katanovic
committed
Fix ci
1 parent 6d2bb30 commit e476f3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ jobs:
8989
- name: Install dependencies
9090
run: |
9191
echo "Django version: ${{ matrix.django }}"
92-
pip install . --no-deps
93-
pip install --no-deps -r test_project/requirements-${{ matrix.django }}.txt
92+
pip install .
93+
pip install -r test_project/requirements-${{ matrix.django }}.txt
9494
pip install flake8
95-
if [ "${{ matrix.db }}" = "mysql" ]; then pip install --no-deps mysqlclient==1.4.6; fi
96-
if [ "${{ matrix.db }}" = "postgres" ]; then pip install --no-deps psycopg2-binary==2.8.4; fi
95+
if [ "${{ matrix.db }}" = "mysql" ]; then pip install mysqlclient==1.4.6; fi
96+
if [ "${{ matrix.db }}" = "postgres" ]; then pip install psycopg2-binary==2.8.4; fi
9797
9898
- name: Lint
9999
run: flake8 --ignore=E501,E731,W504 daguerre

0 commit comments

Comments
 (0)