diff --git a/.gitignore b/.gitignore index 6872e5abf..03c363e0c 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ internal/confdocs/ .DS_Store coverage.out +e2e.cover unit.cover integration.cover junit.*.xml diff --git a/e2e/run.sh b/e2e/run.sh index c240c649f..8772804c2 100755 --- a/e2e/run.sh +++ b/e2e/run.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2022 Zenauth Ltd. +# Copyright 2021-2023 Zenauth Ltd. set -euo pipefail @@ -30,7 +30,7 @@ run_tests() { ( cd "$SCRIPT_DIR" telepresence helm upgrade - telepresence connect --no-report -- go test -v -failfast -p=1 -cover -coverprofile=e2e.cover --tags="tests e2e" "$@" + telepresence connect --no-report -- go test -v -failfast -p=1 -cover -coverprofile=../e2e.cover --tags="tests e2e" "$@" ) }