Skip to content

Commit 9a401f8

Browse files
committed
Fix log verification commands in test-monai-deploy-express.yml to correctly count occurrences of expected output
Signed-off-by: Victor Chang <[email protected]>
1 parent e7b7c66 commit 9a401f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-monai-deploy-express.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
- name: Verify Hello World Workflow Output
6969
run: |
7070
CONTAINER_ID=$(docker container list -a -n 1 -q)
71-
test 2 -eq $(docker logs $CONTAINER_ID | grep "1.3.6.1.4.1.23438.1.1.1.dcm") | wc -l)
72-
test 1 -eq $(docker logs $CONTAINER_ID | grep "1.3.6.1.4.1.23438.1.1.1.dcm.json") | wc -l)
71+
test 2 -eq $(docker logs $CONTAINER_ID | grep "1.3.6.1.4.1.23438.1.1.1.dcm" | wc -l)
72+
test 1 -eq $(docker logs $CONTAINER_ID | grep "1.3.6.1.4.1.23438.1.1.1.dcm.json" | wc -l)
7373
7474
- name: Stop MONAI Deploy Express
7575
working-directory: ./deploy/monai-deploy-express

0 commit comments

Comments
 (0)