File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments