Skip to content

Commit

Permalink
E2E tests not running by default (submariner-io#238)
Browse files Browse the repository at this point in the history
PR submariner-io#228 modified e2e.sh so
it only runs the E2E tests if 'status=keep' and thus the tests no longer run
with 'status=onetime', which is the default via 'make ci e2e' as documented.
Therefore modified e2e.sh to also check for 'status=onetime'.

Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
  • Loading branch information
tpantelis authored Dec 10, 2019
1 parent 86cd26c commit e17600a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/kind-e2e/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ fi

test_connection

if [[ $1 = keep ]]; then
if [[ $1 = keep || $1 = onetime ]]; then
test_with_e2e_tests
fi

Expand Down

0 comments on commit e17600a

Please sign in to comment.