From 88f74d9eec9a6ea703eaaea88c2cb742d620a86e Mon Sep 17 00:00:00 2001 From: Czar Echavez Date: Fri, 1 Dec 2023 16:08:02 +0000 Subject: [PATCH] #2084: remove debugs and comment out the uploading of report --- .azure/azure-ci-build-pipeline.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure/azure-ci-build-pipeline.yaml b/.azure/azure-ci-build-pipeline.yaml index 2dffe61a..a59c5593 100644 --- a/.azure/azure-ci-build-pipeline.yaml +++ b/.azure/azure-ci-build-pipeline.yaml @@ -98,7 +98,7 @@ stages: displayName: 'Perform PrimAITE Setup' - script: | - pytest -v tests/unit_tests --cov=src/ -o junit_family=xunit2 --junitxml=junit/test-results.xml --cov-report xml:$(System.DefaultWorkingDirectory)/coverage.xml --cov-report html:$(System.DefaultWorkingDirectory)/htmlcov --cov-report term + pytest -v tests/ --cov=src/ -o junit_family=xunit2 --junitxml=junit/test-results.xml --cov-report xml:$(System.DefaultWorkingDirectory)/coverage.xml --cov-report html:$(System.DefaultWorkingDirectory)/htmlcov --cov-report term displayName: 'Run tests and code coverage' - task: PublishTestResults@2 @@ -115,7 +115,7 @@ stages: displayName: 'Publish coverage report' inputs: codeCoverageTool: Cobertura - summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml' + summaryFileLocation: '$(System.DefaultWorkingDirectory)/coverage.xml' pathToSources: '$(System.DefaultWorkingDirectory)/src' # reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov/' # additionalCodeCoverageFiles: '$(System.DefaultWorkingDirectory)/**/htmlcov/*.*'