We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7249ffa commit f1255b3Copy full SHA for f1255b3
.github/workflows/generate_coverage.yaml
@@ -56,13 +56,16 @@ jobs:
56
id: build_coverage
57
uses: nick-fields/[email protected]
58
with:
59
+ shell: bash
60
timeout_minutes: 60
61
max_attempts: 5
62
retry_on: error
63
command: |
- python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
64
- on_retry_command: |
+ . $CONDA/etc/profile.d/conda.sh
65
+ conda activate coverage
66
+ cd /home/runner/work/dpnp/dpnp
67
git clean -fxd
68
+ python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
69
70
- name: Total number of coverage attempts
71
run: |
0 commit comments