Skip to content

Commit

Permalink
👷 Prevent tox pkg double build @ GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Aug 9, 2023
1 parent cd5061c commit 054ba68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ jobs:
- name: Install test dependencies
run: python -m pip install -U tox virtualenv
- name: Prepare test environment
run: tox --notest -p auto --parallel-live
run: tox -vv --notest -p auto --parallel-live
- name: Test pip ${{ matrix.pip-version }}
run: tox
run: tox --skip-pkg-install
- name: Upload coverage to Codecov
if: >-
!github.job_workflow_sha
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
- name: Install tox
run: pip install tox
- name: Prepare test environment
run: tox --notest -p auto --parallel-live
run: tox -vv --notest -p auto --parallel-live
- name: Test ${{ matrix.toxenv }}
run: tox
run: tox --skip-pkg-install

0 comments on commit 054ba68

Please sign in to comment.