We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3b2de commit 28d3348Copy full SHA for 28d3348
.github/workflows/generate_coverage.yaml
@@ -53,8 +53,22 @@ jobs:
53
conda list
54
55
- name: Build dpnp with coverage
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: |
64
+ . $CONDA/etc/profile.d/conda.sh
65
+ conda activate coverage
66
+ git clean -fxd
67
+ python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
68
+
69
+ - name: Total number of coverage attempts
70
run: |
- python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
71
+ echo "Total number of coverage attempts made: ${{ steps.build_coverage.outputs.total_attempts }}"
72
73
- name: Install coverall dependencies
74
0 commit comments