We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a2fec3 commit c50244dCopy full SHA for c50244d
1 file changed
.github/workflows/ci-tests.yaml
@@ -40,8 +40,11 @@ jobs:
40
- name: Run tests with coverage
41
if: matrix.perl == 'latest'
42
run: |
43
- TEST_SHARED=1 TEST_SUBREAPER=1 PERL5OPT="-MDevel::Cover=-coverage,statement" prove -l t
44
- cover -report codecovbash
+ # t/01_run.t can segfault, retrying multiple times
+ # See https://progress.opensuse.org/issues/180026
45
+ curl https://raw.githubusercontent.com/okurz/retry/refs/heads/main/retry > retry
46
+ chmod +x retry
47
+ TEST_SHARED=1 TEST_SUBREAPER=1 PERL5OPT="-MDevel::Cover=-coverage,statement" ./retry -r 7 prove -l t
48
- name: Upload coverage to ☂️ Codecov
49
uses: codecov/codecov-action@v5
50
0 commit comments