Skip to content

Commit ce7cea1

Browse files
committed
Change report-coverage.sh in attempt to fix Azure
Recently sometimes Azure has failed with: ++ curl -s https://codecov.io/bash bash: /dev/fd/63: No such file or directory This attempts to fix this by modifying report-coverage.sh slightly.
1 parent c8cf748 commit ce7cea1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/report-coverage.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ fi
1313
python -m coverage combine
1414
python -m coverage xml
1515
python -m coverage report -m
16-
bash <(curl -s https://codecov.io/bash) -Z -X gcov -X coveragepy -X search -X xcode -X gcovout -X fix -f coverage.xml
16+
curl -s https://codecov.io/bash -o codecov-upload.sh
17+
bash codecov-upload.sh -Z -X gcov -X coveragepy -X search -X xcode -X gcovout -X fix -f coverage.xml

0 commit comments

Comments
 (0)