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 e6fbab8 commit c411986Copy full SHA for c411986
azure-pipelines.yml
@@ -68,8 +68,9 @@ jobs:
68
if [ $PYTHON_VERSION == 3.8 ]; then
69
source activate mpi4py_fft_env
70
cd tests
71
- bash <(curl -s https://codecov.io/bash)
72
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report -t $(CODACY_PROJECT_TOKEN) -r coverage.xml
+ curl -Os https://uploader.codecov.io/latest/linux/codecov
+ chmod +x codecov
73
+ ./codecov -f coverage.xml
74
fi
75
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
76
displayName: Upload to Codecov
0 commit comments