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