Skip to content

Commit

Permalink
Add workaround for tox errors during env setup
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Aug 29, 2023
1 parent 1ef36f2 commit 1d1a59b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: python -m downloads.preload setupcfg_examples.txt
- name: Install tox
run: |
python -m pip install tox
python -m pip install tox 'pyproject-api<1.6.0' # workaround #4031
- name: Run
run: tox
- name: Create coverage report
Expand All @@ -120,7 +120,7 @@ jobs:
uses: actions/setup-python@v4
- name: Install tox
run: |
python -m pip install tox
python -m pip install tox 'pyproject-api<1.6.0' # workaround #4031
- name: Run
run: tox

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
python-version: "3.10"
- name: Install tox
run: |
python -m pip install tox
python -m pip install tox 'pyproject-api<1.6.0' # workaround #4031
- name: Run integration tests
run: tox -e integration

Expand All @@ -240,7 +240,7 @@ jobs:
python-version: 3.x
- name: Install tox
run: |
python -m pip install tox
python -m pip install tox 'pyproject-api<1.6.0' # workaround #4031
- name: Run
run: tox -e release
env:
Expand Down

0 comments on commit 1d1a59b

Please sign in to comment.