From 89ce70d7f752f243e855e7801f213a03acef4ab6 Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Sat, 16 Mar 2024 11:38:16 -0700 Subject: [PATCH] Ask pytest to ignore parsing `tests/support` folder --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 440b48ea..9f387b83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' - name: Tests - run: pytest --slow --sqlite --postgresql --elasticsearch --redis --cov=protean --cov-config .coveragerc tests + run: pytest --ignore=tests/support/ --slow --sqlite --postgresql --elasticsearch --redis --cov=protean --cov-config .coveragerc tests env: TEST_CMD: pre-commit run --all-files POSTGRES_PASSWORD: postgres