From d1b56331408ddbe0e29e0a8f9bb1294cc5806344 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Mon, 31 Jul 2023 18:44:00 +0200 Subject: [PATCH] Remove script wrapper to avoid extra line breaks around the output. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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