From 0ee0f129ea786d8e9b6238abbd08ba51fa623cd4 Mon Sep 17 00:00:00 2001 From: gilch Date: Thu, 25 May 2023 22:29:43 -0600 Subject: [PATCH] Disable pytest cache in workflow --- .github/workflows/test-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 1c3721ab..cf170eb7 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -58,7 +58,7 @@ jobs: PYTHONWARNINGS: error run: | python -c "import tests" # Compiles hissp.basic on package import. - pytest -v --cov=hissp --cov-report=xml --doctest-modules --doctest-glob *.md src/hissp/*.lissp tests/ docs/ $(python -c "import hissp; print(hissp.__path__[0])") + pytest -p no:cacheprovider -v --cov=hissp --cov-report=xml --doctest-modules --doctest-glob *.md src/hissp/*.lissp tests/ docs/ $(python -c "import hissp; print(hissp.__path__[0])") - name: Codecov uses: codecov/codecov-action@v1.0.4 with: