From e9f3444daac63ed89a9267cd73011ade6e1d1ec6 Mon Sep 17 00:00:00 2001 From: medmunds Date: Thu, 15 Dec 2022 09:54:44 -0800 Subject: [PATCH] Fix test workflows Pin to tox v3 for now. (tox plugins aren't ready for tox v4 yet.) --- .github/workflows/integration-test.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index edcd51a..2b6df92 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -60,7 +60,7 @@ jobs: run: | set -x python --version - pip install tox + pip install 'tox<4' tox --version - name: Test ${{ matrix.config.tox }} run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4483005..ee2e7f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v2 - name: Install tox-gh-matrix run: | - python -m pip install tox tox-gh-matrix + python -m pip install 'tox<4' 'tox-gh-matrix<0.2' python -m tox --version - name: Generate tox envlist id: generate-envlist