From: Bob Halley Date: Wed, 1 Jul 2020 13:50:44 +0000 (-0700) Subject: another codecov on azure-pipelines attempt X-Git-Tag: v2.0.0rc2~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d054265b48abe2649eb42f73789208afdf022439;p=thirdparty%2Fdnspython.git another codecov on azure-pipelines attempt --- diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a06839df..e6e8b93e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,7 +23,11 @@ jobs: - script: | python -m pip install --upgrade pip pip install -e .[dnssec,idna,doh,trio,curio] - displayName: 'Install dependencies' + displayName: 'Install python dependencies' + + - script: | + dotnet tool install --global Codecov.Tool + displayName: 'Install Codecov.Tool' - script: | pip install pytest pytest-cov pytest-azurepipelines @@ -41,3 +45,7 @@ jobs: codeCoverageTool: Cobertura summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml' # reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov' + + - script: | + codecov + displayName: 'Upload to codecov'