From 33de1e755ab8060c1333cedfc13ff866421300c3 Mon Sep 17 00:00:00 2001 From: Justin Michalicek Date: Sat, 25 Nov 2023 19:26:35 +0000 Subject: [PATCH] Break up django install and requirements-test.txt pip install due to hashes in requirements but no hash on django --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 97e0f39..96b37bb 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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