Skip to content

Commit e9f7e8f

Browse files
chore: fix error bubbling in scripts to run tests (#188)
Signed-off-by: David Dal Busco <[email protected]>
1 parent 0e2c5d4 commit e9f7e8f

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

scripts/e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -e
3+
set -euo pipefail
44

55
TEST_TYPE=${1:-e2e}
66

scripts/e2e-example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
set -euo pipefail
4+
35
TEST_TYPE=${1:-e2e}
46

57
function run_test() {

scripts/e2e-prepare

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
set -euo pipefail
4+
35
SATELLITE_ID="jx5yt-yyaaa-aaaal-abzbq-cai"
46

57
function prepare() {

scripts/e2e-starter

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
set -euo pipefail
4+
35
TEST_TYPE=${1:-e2e}
46

57
function run_test() {

0 commit comments

Comments
 (0)