diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3bfbfe9c38..e3f70249b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -120,12 +120,12 @@ jobs: - name: Run unit tests tox target run: | - script -e -c "tox -e py${{ matrix.python_version }}" + tox -e py${{ matrix.python_version }} - name: Run dist install checks tox target if: ${{ matrix.python_version != 'pypy-3.7' && matrix.python_version != 'pyjion' }} run: | - script -e -c "tox -e py${{ matrix.python_version }}-dist,py${{ matrix.python_version }}-dist-wheel" + tox -e py${{ matrix.python_version }}-dist,py${{ matrix.python_version }}-dist-wheel code_coverage: name: Generate Code Coverage