Skip to content

Commit 66132fe

Browse files
author
Hatim Chahout
committed
Reverted relative paths. #66
1 parent 4a0f101 commit 66132fe

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

tests/run_test_setup.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Exit immediately if a command exits with a non-zero status.
55
set -ex
66

7+
echo "Current working directory: $(pwd)"
8+
79
# Mock slurm and mass commands for testing
810
sbatch() { echo "MOCK SBATCH: $@"; }
911
slurm_wait() { :; }

tests/run_tests.bash

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@ echo "Running all integration tests..."
1111
echo ""
1212
echo "-------------------------------------"
1313
echo "Running test_valid_run.bash"
14-
./test_valid_run.bash
14+
./tests/test_valid_run.bash
1515

1616
# Test 2: Test with missing dependencies
1717
echo ""
1818
echo "-------------------------------------"
1919
echo "Running test_missing_deps.bash"
20-
./test_missing_deps.bash
20+
./tests/test_missing_deps.bash
2121

2222
# Test 3: Test with user choices for Southern Ocean
2323
echo ""
2424
echo "-------------------------------------"
2525
echo "Running test_user_choices.bash"
26-
./test_user_choices.bash
26+
./tests/test_user_choices.bash
2727

2828
# Test 4: Test with missing arguments
2929
echo ""
3030
echo "-------------------------------------"
3131
echo "Running test_missing_args.bash"
32-
./test_missing_args.bash
32+
./tests/test_missing_args.bash
3333

3434
# Test 5: Test with missing or invalid file paths
3535
echo ""
3636
echo "-------------------------------------"
3737
echo "Running test_invalid_paths.bash"
38-
./test_invalid_paths.bash
38+
./tests/test_invalid_paths.bash
3939

4040
echo ""
4141
echo "-------------------------------------"

0 commit comments

Comments
 (0)