From 1e0dc777fe7a887e643596825e28e286c849337f Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Wed, 23 Mar 2022 12:09:04 +0100 Subject: [PATCH] ci-automation/test.sh: export PARALLEL_TESTS Export PARALLEL_TESTS in the container's .env file to ensure it is passed to the vendor script. --- ci-automation/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/test.sh b/ci-automation/test.sh index 509079b5ab..f6105708ae 100644 --- a/ci-automation/test.sh +++ b/ci-automation/test.sh @@ -145,7 +145,7 @@ function test_run() { # Pass PARALLEL_TESTS to the container if [ -n "${PARALLEL_TESTS-}" ] ; then - echo "PARALLEL_TESTS=\"${PARALLEL_TESTS}\"" > sdk_container/.env + echo "export PARALLEL_TESTS=\"${PARALLEL_TESTS}\"" > sdk_container/.env echo "rm -f 'sdk_container/.env'" >> ./ci-cleanup.sh fi