Skip to content

Commit 2b6aeed

Browse files
Merge pull request #95 from NHSDigital/APM-6136-node-dependabot-fixes
APM-6136 upgrades to node packages for async-slowapp
2 parents 413a24d + ce2de27 commit 2b6aeed

4 files changed

Lines changed: 953 additions & 4930 deletions

File tree

azure/azure-build-pipeline.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,16 @@ extends:
5555
- bash: "make test-report"
5656
displayName: run tests
5757
workingDirectory: "${{ variables.service_name }}"
58+
- bash: |
59+
if [ ! -f "reports/tests/async-slowapp.xml" ] || [ ! -f "reports/tests/sync-wrap.xml" ]; then
60+
echo "Test reports not found"
61+
exit -1
62+
fi
63+
workingDirectory: ${{ variables.service_name }}
64+
displayName: Check test reports exist
5865
- task: PublishTestResults@2
5966
inputs:
6067
testResultsFormat: "JUnit"
61-
testResultsFiles: "./reports/tests/*.xml"
68+
testResultsFiles: "${{ variables.service_name }}/reports/tests/*.xml"
6269
failTaskOnFailedTests: true
6370
displayName: publish test report

0 commit comments

Comments
 (0)