Skip to content

Commit

Permalink
ci: Update pip install order
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Sep 22, 2023
1 parent 615f44a commit 9f6cde6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ${{ matrix.django-version }}
python -m pip install -r tests/requirements/${{ matrix.requirements-file }}
python -m pip install ${{ matrix.django-version }}
python setup.py install
- name: Run coverage
Expand Down Expand Up @@ -197,8 +197,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ${{ matrix.django-version }}
python -m pip install -r tests/requirements/${{ matrix.requirements-file }}
python -m pip install ${{ matrix.django-version }}
python setup.py install
- name: Run coverage
Expand Down Expand Up @@ -242,8 +242,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ${{ matrix.django-version }}
python -m pip install -r tests/requirements/${{ matrix.requirements-file }}
python -m pip install ${{ matrix.django-version }}
python setup.py install
- name: Run coverage
Expand Down

0 comments on commit 9f6cde6

Please sign in to comment.