From e8d1891db20d76011f50bff94876de6bd39f468d Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 11:01:05 -0400 Subject: [PATCH 1/5] fix: Pin tox --- .github/workflows/tox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 2769d133..3bd7a0dc 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -17,7 +17,7 @@ jobs: architecture: x64 - run: rm -f /etc/boto.cfg - run: pip3 install --upgrade pip setuptools - - run: pip3 install 'tox' + - run: pip3 install 'tox<4.11' - run: tox -- -n0 - name: Run coverage From 4e9c86c4651d8384035be8628fc21897336815fd Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 11:51:29 -0400 Subject: [PATCH 2/5] fix: Pin pytest --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 35aaf887..9b4b1da8 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ skip_missing_interpreters = True [testenv] deps = - pytest + pytest<7.4.0 -r{toxinidir}/requirements/testing.txt whitelist_externals=pytest commands=pytest {posargs:-n auto} From 83c284c07fe06cf4d73af4b3b9ac527e14acdc10 Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 13:25:35 -0400 Subject: [PATCH 3/5] Revert "fix: Pin pytest" This reverts commit 4e9c86c4651d8384035be8628fc21897336815fd. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9b4b1da8..35aaf887 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ skip_missing_interpreters = True [testenv] deps = - pytest<7.4.0 + pytest -r{toxinidir}/requirements/testing.txt whitelist_externals=pytest commands=pytest {posargs:-n auto} From ec589b6e1c0141be767aede789c8635cc9e5b1ae Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 13:25:44 -0400 Subject: [PATCH 4/5] Revert "fix: Pin tox" This reverts commit e8d1891db20d76011f50bff94876de6bd39f468d. --- .github/workflows/tox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 3bd7a0dc..2769d133 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -17,7 +17,7 @@ jobs: architecture: x64 - run: rm -f /etc/boto.cfg - run: pip3 install --upgrade pip setuptools - - run: pip3 install 'tox<4.11' + - run: pip3 install 'tox' - run: tox -- -n0 - name: Run coverage From 81083867177f021659035a6f78ca989b309550b3 Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 13:26:18 -0400 Subject: [PATCH 5/5] Add space to make sure pr runs --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 35aaf887..f0086825 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ envlist = py{38} skip_missing_interpreters = True + [testenv] deps = pytest