We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179fdc5 commit 3b4f984Copy full SHA for 3b4f984
1 file changed
.github/workflows/pytest-iris.yml
@@ -58,15 +58,15 @@ jobs:
58
- name: Start IRIS container
59
run: |
60
docker run -d --name iris-server \
61
+ -p 52773:52773 \
62
--entrypoint /irisdev/app/iris-start-and-wait.sh \
63
pytest-iris
64
65
- name: Wait for IRIS REST API to be ready
66
67
echo "Waiting for IRIS REST API..."
68
for i in $(seq 1 60); do
- if docker exec iris-server \
69
- curl -sf -u "$IOP_USERNAME:$IOP_PASSWORD" \
+ if curl -sf -u "$IOP_USERNAME:$IOP_PASSWORD" \
70
"http://localhost:52773/api/iop/version?namespace=$IOP_NAMESPACE" \
71
> /dev/null 2>&1; then
72
echo "IRIS REST API is ready after $i attempts"
0 commit comments