From dabaf27a69ff618b5ca887411a4f5015fd1eb399 Mon Sep 17 00:00:00 2001 From: federico Tartarini Date: Thu, 14 Mar 2024 14:04:32 +1030 Subject: [PATCH] test: fixing error with tox command --- .github/workflows/build-test-publish-testPyPI.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-publish-testPyPI.yml b/.github/workflows/build-test-publish-testPyPI.yml index 89c57b9..9320913 100644 --- a/.github/workflows/build-test-publish-testPyPI.yml +++ b/.github/workflows/build-test-publish-testPyPI.yml @@ -24,11 +24,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install Tox and any other packages - run: pip install "tox<4" - - name: Run Tox + - name: Install dependencies run: | - tox -e ${{ matrix.python-version }} + python -m pip install --upgrade pip + python -m pip install tox tox-gh-actions + - name: Test with tox + run: tox # deploy: #