From 11661d3815f273a6968cf09ecc678cf6fa6dcfcd Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 3 Feb 2022 20:09:12 +0100 Subject: [PATCH] Disabled caching in GitHub actions for Windows tests. See https://github.com/actions/setup-python/issues/328. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8dd0380cdfb15..0b2b5368192ca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,8 +25,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - cache: 'pip' - cache-dependency-path: 'tests/requirements/py3.txt' + # cache: 'pip' + # cache-dependency-path: 'tests/requirements/py3.txt' - run: pip install -r tests/requirements/py3.txt -e . - name: Run tests run: python tests/runtests.py -v2