From 5ccd190791e847bec042eea25bc12e73d06faf6d Mon Sep 17 00:00:00 2001 From: Will Jones Date: Wed, 26 Jul 2023 22:08:39 -0700 Subject: [PATCH] ci: don't run benchmark in debug mode --- .github/workflows/python_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_build.yml b/.github/workflows/python_build.yml index 39dcb99070..82e67b6380 100644 --- a/.github/workflows/python_build.yml +++ b/.github/workflows/python_build.yml @@ -123,13 +123,13 @@ jobs: - name: Run tests run: | source venv/bin/activate - python -m pytest -m '((s3 or azure) and integration) or not integration' + python -m pytest -m '((s3 or azure) and integration) or not integration and not benchmark' - name: Test without pandas run: | source venv/bin/activate pip uninstall --yes pandas - python -m pytest -m "not pandas and not integration" + python -m pytest -m "not pandas and not integration and not benchmark" pip install pandas - name: Build Sphinx documentation