Skip to content

Commit

Permalink
chore(e2e): Fix output path of the E2E coverage (#1757)
Browse files Browse the repository at this point in the history
Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
  • Loading branch information
oguzhand95 committed Aug 18, 2023
1 parent 8fd1ac8 commit 15208f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -18,6 +18,7 @@ internal/confdocs/
.DS_Store

coverage.out
e2e.cover
unit.cover
integration.cover
junit.*.xml
Expand Down
4 changes: 2 additions & 2 deletions e2e/run.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Copyright 2022 Zenauth Ltd.
# Copyright 2021-2023 Zenauth Ltd.

set -euo pipefail

Expand Down Expand Up @@ -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" "$@"
)
}

Expand Down

0 comments on commit 15208f9

Please sign in to comment.