Skip to content

Commit

Permalink
Break up django install and requirements-test.txt pip install due to …
Browse files Browse the repository at this point in the history
…hashes in requirements but no hash on django
  • Loading branch information
jmichalicek committed Nov 25, 2023
1 parent 525417f commit 33de1e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# there's probably a better way to do this, but this should be good enough
# for now to deal with no hash on the pip install for django
run: |
python -m pip install --upgrade pip
pip install ${{ matrix.django-version }} -r requirements-test.txt
pip install ${{ matrix.django-version }}
pip install -r requirements-test.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 33de1e7

Please sign in to comment.