Skip to content

Commit 400e1e4

Browse files
committed
Added shell option to the step
1 parent 7249ffa commit 400e1e4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/generate_coverage.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,15 @@ jobs:
5656
id: build_coverage
5757
uses: nick-fields/[email protected]
5858
with:
59+
shell: bash
5960
timeout_minutes: 60
6061
max_attempts: 5
6162
retry_on: error
6263
command: |
63-
python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
64-
on_retry_command: |
64+
. $CONDA/etc/profile.d/conda.sh
65+
conda activate coverage
6566
git clean -fxd
67+
python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
6668
6769
- name: Total number of coverage attempts
6870
run: |

0 commit comments

Comments
 (0)