diff --git a/.azure-pipelines/jobs/tests.tmpl.yml b/.azure-pipelines/jobs/tests.tmpl.yml index b0e4a919f..f301678ad 100644 --- a/.azure-pipelines/jobs/tests.tmpl.yml +++ b/.azure-pipelines/jobs/tests.tmpl.yml @@ -65,20 +65,21 @@ jobs: python \ utils/runDotnetTests.py \ "${{ parameters.os }}" - - ${{ if eq( parameters.os, 'linux' ) }}: - - task: PythonScript@0 - displayName: Upload coverage - condition: | - and( - succeeded(), - not(startsWith(variables['Build.SourceBranch'], 'refs/tags/')) - ) - inputs: - scriptSource: 'filePath' - scriptPath: .azure-pipelines/scripts/upload-coverage.py - failOnStderr: true - env: - COVERALLS_REPO_TOKEN: $(COVERALLS_REPO_TOKEN) + # NOTE(rkm 2022-02-17) See https://github.com/SMI/SmiServices/issues/1049 + # - ${{ if eq( parameters.os, 'linux' ) }}: + # - task: PythonScript@0 + # displayName: Upload coverage + # condition: | + # and( + # succeeded(), + # not(startsWith(variables['Build.SourceBranch'], 'refs/tags/')) + # ) + # inputs: + # scriptSource: 'filePath' + # scriptPath: .azure-pipelines/scripts/upload-coverage.py + # failOnStderr: true + # env: + # COVERALLS_REPO_TOKEN: $(COVERALLS_REPO_TOKEN) - job: java_tests displayName: Java Tests diff --git a/news/1050-bugfix.md b/news/1050-bugfix.md new file mode 100644 index 000000000..d87ce3aa9 --- /dev/null +++ b/news/1050-bugfix.md @@ -0,0 +1 @@ +Disable coverage upload which is currently broken for .NET 6