Skip to content

Commit 09cc3a2

Browse files
Addressing feedback from copilot
1 parent 61606c0 commit 09cc3a2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

script/launch_tests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ DEFAULT_CHUNK_SIZE=10
4747
DEFAULT_FAIL_FAST=false
4848

4949
# Split tests into chunks and run multiple ctest commands
50-
CHUNK_SIZE=${CTEST_CHUNK_SIZE:-$DEFAULT_CHUNK_SIZE}
51-
FAIL_FAST=${CTEST_FAIL_FAST:-$DEFAULT_FAIL_FAST}
50+
# Export variables so Python subprocess can access them
51+
export CHUNK_SIZE=${CTEST_CHUNK_SIZE:-$DEFAULT_CHUNK_SIZE}
52+
export FAIL_FAST=${CTEST_FAIL_FAST:-$DEFAULT_FAIL_FAST}
5253

5354
python3 -c "
5455
import json

0 commit comments

Comments
 (0)