Bläddra i källkod

Disabled caching in GitHub actions for Windows tests.

See https://github.com/actions/setup-python/issues/328.
Mariusz Felisiak 3 år sedan
förälder
incheckning
11661d3815
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      .github/workflows/tests.yml

+ 2 - 2
.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