We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9575363 commit 151eca8Copy full SHA for 151eca8
.github/workflows/generate_coverage.yaml
@@ -53,8 +53,19 @@ jobs:
53
conda list
54
55
- name: Build dpnp with coverage
56
+ id: build_coverage
57
+ uses: nick-fields/retry@v2.9.0
58
+ with:
59
+ max_attempts: 5
60
+ retry_on: error
61
+ command: |
62
+ python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
63
+ on_retry_command: |
64
+ git clean -fxd
65
+
66
+ - name: Total number of coverage attempts
67
run: |
- python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
68
+ echo "Total number of coverage attempts made: ${{ steps.build_coverage.outputs.total_attempts }}"
69
70
- name: Install coverall dependencies
71
0 commit comments