diff options
author | 2019-06-22 20:22:39 -0700 | |
---|---|---|
committer | 2019-06-22 20:22:39 -0700 | |
commit | 421b27a129dcbb11a8f8034f38cc8d757849413a (patch) | |
tree | ac3f10f86a4a71b2c2492ff12a8aa62d08316680 | |
parent | Remove -it options from docker exec (diff) |
Don't generate an HTML report because Azure already does it
See microsoft/azure-pipelines-tasks#9704
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 65bf054..d22ba40 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -57,7 +57,7 @@ jobs: - script: | docker exec snekbox_test /bin/ash -c \ - 'pipenv run coverage xml && pipenv run coverage html' + 'pipenv run coverage xml' displayName: 'Generate Coverage Report' - task: PublishCodeCoverageResults@1 @@ -66,7 +66,6 @@ jobs: inputs: codeCoverageTool: Cobertura summaryFileLocation: '**/coverage.xml' - reportDirectory: '**/htmlcov' - job: build displayName: 'Build' |