We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1de0923 + 1ded747 commit ffdcce6Copy full SHA for ffdcce6
.github/workflows/update-plugin-list.yml
@@ -27,12 +27,20 @@ jobs:
27
- name: Setup Python
28
uses: actions/setup-python@v4
29
with:
30
- python-version: 3.8
+ python-version: "3.8"
31
+ cache: pip
32
+ - name: requests-cache
33
+ uses: actions/cache@v3
34
+ with:
35
+ path: ~/.cache/pytest-plugin-list/
36
+ key: plugins-http-cache-${{ github.run_id }} # Can use time based key as well
37
+ restore-keys: plugins-http-cache-
38
39
- name: Install dependencies
40
run: |
41
python -m pip install --upgrade pip
- pip install packaging requests tabulate[widechars] tqdm
42
+ pip install packaging requests tabulate[widechars] tqdm requests-cache platformdirs
43
+
44
45
- name: Update Plugin List
46
run: python scripts/update-plugin-list.py
0 commit comments