File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,20 @@ pushd $ROOT_DIR > /dev/null
10
10
# Try to source the env file.
11
11
if [ -f $SCRIPT_DIR /scripts/env.sh ]; then
12
12
echo " Sourcing env inputs"
13
- . $SCRIPT_DIR /scripts/ env.sh
13
+ . $SCRIPT_DIR /env.sh
14
14
else
15
15
echo " Not sourcing env inputs"
16
16
fi
17
17
18
18
# Handle test inputs.
19
19
if [ -f $SCRIPT_DIR /scripts/test-env.sh ]; then
20
20
echo " Sourcing test inputs"
21
- . $SCRIPT_DIR /scripts/ test-env.sh
21
+ . $SCRIPT_DIR /test-env.sh
22
22
else
23
23
echo " Missing test inputs, please run 'just setup-test'"
24
- exit 1
25
24
fi
26
25
27
26
# Start the test runner.
28
27
uv run $SCRIPT_DIR /teardown_tests.py
29
28
30
- popd /dev/null
29
+ popd > /dev/null
Original file line number Diff line number Diff line change 4
4
5
5
from utils import DRIVERS_TOOLS , run_command
6
6
7
- TEST_NAME = os .environ [ "TEST_NAME" ]
8
- SUB_TEST_NAME = os .environ [ "SUB_TEST_NAME" ]
7
+ TEST_NAME = os .environ . get ( "TEST_NAME" )
8
+ SUB_TEST_NAME = os .environ . get ( "SUB_TEST_NAME" )
9
9
10
10
# Shut down csfle servers if applicable
11
11
if TEST_NAME == "encryption" :
You can’t perform that action at this time.
0 commit comments