Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Add default GINKGO_ARGS to test-unit
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler committed May 14, 2020
1 parent 1ecbb60 commit f579e9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/test-unit
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
set -euo pipefail

GINKGO_ARGS="${GINKGO_ARGS:-pkg/...}"
# Run code coverage only in CI
COV_ARG=""
if [ ${COVERAGE+x} ]; then
Expand All @@ -14,4 +15,5 @@ ginkgo -p -r \
--trace \
$COV_ARG \
-skipPackage integration,e2e \
-race
-race \
$GINKGO_ARGS

0 comments on commit f579e9c

Please sign in to comment.