We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73485ab commit 1f8297fCopy full SHA for 1f8297f
.github/workflows/testing.yml
@@ -39,10 +39,15 @@ jobs:
39
uses: actions/setup-python@v5
40
with:
41
python-version: ${{ matrix.python-version }}
42
+ - name: Clear pip cache
43
+ run: pip cache purge
44
+
45
- name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt --use-deprecated=legacy-resolver
46
+ run: pip install --no-cache-dir -r requirements.txt
47
+ # - name: Install dependencies
48
+ # run: |
49
+ # python -m pip install --upgrade pip
50
+ # pip install -r requirements.txt --use-deprecated=legacy-resolver
51
- name: Test with pytest
52
run: |
53
pip install pytest
0 commit comments