Skip to content

Commit

Permalink
fix: force pip reinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed Sep 6, 2021
1 parent 795d9f4 commit e7af5dd
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:

- name: Install Dependencies
run: |
pip install --upgrade pip tox virtualenv
python -m pip install -U --force-reinstall pip
pip install tox
- name: Run unittest Python ${{ matrix.python-version }} -- Django ${{ matrix.django-version }}
env:
TOXENV: py${{ matrix.python-version }}-django${{ matrix.django-version }}
run: tox
run: |
pip show setuptools
tox
run_integration_tests:
name: Integration tests
Expand All @@ -54,13 +56,15 @@ jobs:

- name: Install Dependencies
run: |
pip install --upgrade pip tox virtualenv
python -m pip install -U --force-reinstall pip
pip install tox
- name: Integration tests
env:
TOXENV: integration
run: tox
run: |
pip show setuptools
tox
run_quality_tests:
name: Quality tests
Expand All @@ -79,10 +83,9 @@ jobs:

- name: Install Dependencies
run: |
pip install --upgrade pip tox virtualenv
pip install tox
- name: Integration tests
- name: Quality tests
env:
TOXENV: flake8
run: tox

0 comments on commit e7af5dd

Please sign in to comment.