diff --git a/.azure/azure-ci-build-pipeline.yaml b/.azure/azure-ci-build-pipeline.yaml index a45d26bc..a27fed25 100644 --- a/.azure/azure-ci-build-pipeline.yaml +++ b/.azure/azure-ci-build-pipeline.yaml @@ -109,6 +109,7 @@ stages: - task: PublishTestResults@2 condition: succeededOrFailed() + displayName: 'Publish Test Results' inputs: testRunner: JUnit testResultsFiles: 'junit/**.xml' @@ -131,10 +132,4 @@ stages: pytest --nbmake -n=auto src/primaite/notebooks --junit-xml=./notebook-tests/notebooks.xml pytest --nbmake -n=auto src/primaite/simulator/_package_data --junit-xml=./notebook-tests/package-notebooks.xml displayName: 'Run notebooks' - - task: PublishTestResults@2 condition: succeededOrFailed() - inputs: - testRunner: JUnit - testResultsFiles: 'notebook-tests/**.xml' - testRunTitle: 'Publish Notebook run' - failTaskOnFailedTests: true