Skip to content

Commit

Permalink
Attempt to fix Mac shard.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Jan 5, 2024
1 parent cdd9b53 commit 358afe0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ join(matrix.python-version, '.') }}
id: pyenv
uses: gabrielfalcao/pyenv-action@v18
with:
default: "${{ join(matrix.python-version, '.') }}"
command: pip install -U tox
- name: Run Unit Tests
run: tox -epy${{ matrix.python-version[0] }}${{ matrix.python-version[1] }} -- -vvs
run: |
${{ steps.pyenv.outputs.pyenv_root }}/versions/${{ join(matrix.python-version, '.') }}/bin/python \
-mtox -epy${{ matrix.python-version[0] }}${{ matrix.python-version[1] }} -- -vvs
unit-tests:
name: (${{ matrix.os }}) TOXENV=py${{ matrix.python-version[0] }}${{ matrix.python-version[1] }}
needs: org-check
Expand Down

0 comments on commit 358afe0

Please sign in to comment.