Skip to content

Commit 0cbb089

Browse files
committed
fix: undo set -euo pipefail
for some reason, having this set in all test files make some tests to break, and this needs some investigation. Therefore, to unblock the valid changes and enable merging them asap into main, I will remove that line from everywhere, and we can add it in a follow up PR.
1 parent 13c0904 commit 0cbb089

22 files changed

Lines changed: 0 additions & 22 deletions

bashunit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
# shellcheck disable=SC2034
54
declare -r BASHUNIT_VERSION="0.13.0"

tests/acceptance/bashunit.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_execution_error_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_fail_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_find_tests_command_line_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_pass_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_path_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_stop_on_failure_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="tests/acceptance/fixtures/.env.default"

tests/acceptance/bashunit_upgrade_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up() {
54
./build.sh >/dev/null

tests/acceptance/install_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -euo pipefail
32

43
function set_up_before_script() {
54
TEST_ENV_FILE="./tests/acceptance/fixtures/.env.default"

0 commit comments

Comments
 (0)