Skip to content

Commit d3c89eb

Browse files
committed
Fail integration test early through set mechanisms
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 6eeded5 commit d3c89eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build_integration_test.sh

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

3+
set -e # Exit script immediately on first error.
4+
set -x # Print commands and their arguments as they are executed.
5+
set -o pipefail # Print commands and their arguments as they are
6+
37
cli="./bin/faas-cli"
48

59
TEMPLATE_NAME="python3-http"

0 commit comments

Comments
 (0)