We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9aa5a4 commit 20238c2Copy full SHA for 20238c2
scripts/docker-smoke-test.sh
@@ -84,11 +84,13 @@ PYTHONPATH=. SKIP_INFERENCE_TESTS=$SKIP_INFERENCE_TESTS pytest -vv scripts/smoke
84
#######################
85
# Test parallel vs single mode
86
87
-start_container 9000 true
88
-await_server_ready 9000
+if ! $SKIP_INFERENCE_TESTS; then
+ start_container 9000 true
89
+ await_server_ready 9000
90
-echo Running parallel mode test
91
-./scripts/parallel-mode-test.sh localhost:8000 localhost:9000
+ echo Running parallel mode test
92
+ ./scripts/parallel-mode-test.sh localhost:8000 localhost:9000
93
+fi
94
95
result=$?
96
exit $result
0 commit comments