Skip to content

Commit d9ba050

Browse files
georgethebeatledanail-branekov
authored andcommitted
Do not measure code coverage
- We are no longer reporting it, since code climate changed their api - We never look at it - Tests will run faster
1 parent 2bce33e commit d9ba050

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

scripts/run-tests.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ function run_ginkgo() {
5353
extra_args+=("--procs=${GINKGO_NODES}")
5454
fi
5555

56-
if [[ -z "${NO_COVERAGE:-}" ]]; then
57-
extra_args+=("--coverprofile=cover.out" "--coverpkg=code.cloudfoundry.org/korifi/...")
58-
fi
59-
6056
if [[ -z "${NON_RECURSIVE_TEST:-}" ]]; then
6157
extra_args+=("-r")
6258
fi

scripts/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
44

5-
NO_COVERAGE=true NON_RECURSIVE_TEST=true $SCRIPT_DIR/run-tests.sh $@
5+
NON_RECURSIVE_TEST=true $SCRIPT_DIR/run-tests.sh $@

0 commit comments

Comments
 (0)