From f007b0ecbb2174364f6b581b58d57e947c9209f5 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Mon, 16 Oct 2023 15:43:51 -0400 Subject: [PATCH] Avoid running tests under PyPy on GitHub Actions Until we can identify what makes the connection to Solr unstable in the GitHub Actions environment, this is less important than not normalizing CI failures. --- .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 a5145047..610ea7f1 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false max-parallel: 6 matrix: - python: ['3.8', '3.9', '3.10', '3.11', 'pypy3.10'] + python: ['3.8', '3.9', '3.10', '3.11'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3