From cebcf5732553b7df4598db89ad686511669d6a93 Mon Sep 17 00:00:00 2001 From: Richard Giliam Date: Tue, 12 Nov 2024 14:25:26 -0800 Subject: [PATCH] Remove benchmark related tests since they can't be run in pypy --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8485bd9..43e0f26b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,9 @@ jobs: run: | pip install --upgrade setuptools pip install -r requirements.txt - [ -e "requirements_benchmark.txt" ] && pip install -r requirements_benchmark.txt # include benchmark requirements if they exist. pip install -e . - name: Run Tests - run: py.test + run: py.test --ignore tests/test_benchmark_cli.py --ignore tests/test_benchmark_spec.py source-distribution: if: startsWith(github.ref, 'refs/tags/')