From 15208f9d3ce65046157692a846dc4879026dcf97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=C4=9Fuzhan=20Durgun?= Date: Fri, 18 Aug 2023 10:46:46 +0300 Subject: [PATCH] chore(e2e): Fix output path of the E2E coverage (#1757) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oğuzhan Durgun --- .gitignore | 1 + e2e/run.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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" "$@" ) }