File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 78
78
${{ runner.os }}-${{ matrix.python-version }}-${{
79
79
steps.commitstring.outputs.commitstring }}-primer
80
80
- name : Regenerate cache
81
- if : steps.cache-projects.outputs.cache-hit != 'true'
81
+ # Presence of colorama is a heuristic for the env having all packages
82
+ if : steps.cache-projects.outputs.cache-hit != 'true' || ! pip show colorama
82
83
run : |
83
84
. venv/bin/activate
84
85
python tests/primer/__main__.py prepare --clone
Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ jobs:
147
147
${{ runner.os }}-${{ matrix.python-version }}-${{
148
148
steps.commitstring.outputs.commitstring }}-primer
149
149
- name : Regenerate cache
150
- if : steps.cache-projects.outputs.cache-hit != 'true'
150
+ # Presence of colorama is a heuristic for the env having all packages
151
+ if : steps.cache-projects.outputs.cache-hit != 'true' || ! pip show colorama
151
152
run : |
152
153
. venv/bin/activate
153
154
python tests/primer/__main__.py prepare --clone
You can’t perform that action at this time.
0 commit comments