From 814e74a41ed6cdf0d672cbceb4249df3fc9b4d73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferdinand=20M=C3=BCtsch?= Date: Fri, 30 Dec 2022 13:41:49 +0100 Subject: [PATCH] fix: don't require db param for api test script --- testing/run_api_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/run_api_tests.sh b/testing/run_api_tests.sh index 4b2751b..dccf5e1 100755 --- a/testing/run_api_tests.sh +++ b/testing/run_api_tests.sh @@ -110,7 +110,7 @@ echo "Configuration file: $config" pid=$! wait_for_wakapi -if [ "$1" == "sqlite" ]; then +if [ "$1" == "sqlite" ] || [ -z "$1" ]; then echo "Running test collection ..." newman run "wakapi_api_tests.postman_collection.json" exit_code=$?