We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac61a1 commit 43f4bd3Copy full SHA for 43f4bd3
integration_tests/run-all.sh
@@ -147,7 +147,7 @@ fi
147
148
# Cli shell tests
149
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "cli" ]]; then
150
- CLI_SHELL_TESTS=$(find integration_tests/cli -type f -name 'model*.sh' -not -name "common.sh")
+ CLI_SHELL_TESTS=$(find integration_tests/cli -type f -name '*.sh' -not -name "common.sh")
151
152
for CLI_SHELL_TEST in ${CLI_SHELL_TESTS}; do
153
init_pool
@@ -191,7 +191,7 @@ fi
191
192
# Go rest tests
193
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "rest" ]]; then
194
- GO_REST_TESTS="$(find integration_tests/grpc_rest/model -type f -name '*_test.go')"
+ GO_REST_TESTS="$(find integration_tests/grpc_rest -type f -name '*_test.go')"
195
196
for GO_REST_TEST in ${GO_REST_TESTS}; do
197
0 commit comments