Skip to content

Commit

Permalink
Ignore development dir in test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBaeumer committed May 13, 2019
1 parent a6935bd commit 219e55c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions novendor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ DIRS=$(ls -ld */ . | awk {'print $9'} | grep -v vendor)
for DIR in ${DIRS}; do
GOFILES=$(git ls-files ${DIR} | grep ".*\.go$") || true

# ignore dev directory...
if [[ ${DIR} == "development/" ]]; then
continue
fi

if [[ ${DIR} == "." ]]; then
echo "."
continue
Expand Down

0 comments on commit 219e55c

Please sign in to comment.