Skip to content

Commit f1255b3

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

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/generate_coverage.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,16 @@ 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
66+
cd /home/runner/work/dpnp/dpnp
6567
git clean -fxd
68+
python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
6669
6770
- name: Total number of coverage attempts
6871
run: |

0 commit comments

Comments
 (0)