Skip to content

Commit

Permalink
feat: remove unnecessary curls
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrinson-rise8 committed Nov 7, 2024
1 parent 62afa61 commit e50d27b
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/check_smoke_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,25 +44,8 @@ jobs:
-p 8080:8080 \
rl-service-image
sleep 10
# docker ps
# if [ "$(docker ps -q -f name=rl-service)" == "" ]; then
# echo "RecordLinker Service container is not running"
# docker logs rl-service
# exit 1
# fi
# RESP=$(curl -s http://localhost:8080/algorithm)
# echo "Response: $RESP"
# # Smoke Tests
# RESP_1=$(curl -s -X POST http://localhost:8080/link \
# -d '{"record": {"birth_date": "2053-11-07", "sex": "M", "mrn": "1234567890", "name":[{"family":"Shepard", "given":["John"]}]}}' \
# -H "Content-Type: application/json")
# echo "Response: $RESP_1"
# sleep 10
# Run smoke tests and print the response
JSON_BODY_1='{"record": {"birth_date": "2053-11-07", "sex": "M", "mrn": "1234567890", "name":[{"family":"Shepard", "given":["John"]}]}}'
JSON_BODY_2='{"algorithm": "dibbs-enhanced", "record": {"birth_date": "2000-12-06", "sex": "M", "mrn": "9876543210", "name":[{"family":"Smith", "given":["William"]}]}}'
Expand Down

0 comments on commit e50d27b

Please sign in to comment.