summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 20:11:13 +0100
committerGitHub <noreply@github.com>2022-02-04 20:11:13 +0100
commit4b97f698db91854eebbed32f2ac210221a24f440 (patch)
tree876fa746f723e970c3c874d23c21d0f7fed10479 /.github
parent11661d3815f273a6968cf09ecc678cf6fa6dcfcd (diff)
downloaddjango-4b97f698db91854eebbed32f2ac210221a24f440.tar.gz
Reverted "Disabled caching in GitHub actions for Windows tests."
This reverts commit 11661d3815f273a6968cf09ecc678cf6fa6dcfcd. Fixed in setup-python 2.3.2.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 0b2b536819..8dd0380cdf 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