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 c166f5d commit 9e402d0Copy full SHA for 9e402d0
azure-pipelines.yml
@@ -65,7 +65,7 @@ jobs:
65
- task: PublishTestResults@2
66
condition: succeededOrFailed()
67
inputs:
68
- testResultsFiles: '**/test-*.xml'
+ testResultsFiles: '**/coverage.xml'
69
testRunTitle: 'Publish test results for Python $(python.version)'
70
71
- task: PublishCodeCoverageResults@1
@@ -78,7 +78,8 @@ jobs:
78
if [ $PYTHON_VERSION == 3.7 ]; then
79
source activate mpi4py_fft_env
80
cd tests
81
- codecov -t $(CODECOV_TOKEN)
+ curl -s -o codecov.sh https://codecov.io/bash
82
+ bash codecov.sh -X gcov -X fix -t $(CODECOV_TOKEN)
83
python-codacy-coverage -r coverage.xml -t $(CODACY_PROJECT_TOKEN)
84
fi
85
condition: succeeded()
0 commit comments