diff --git a/script/coverage b/script/coverage index 429a111947..7845aa05c1 100755 --- a/script/coverage +++ b/script/coverage @@ -4,8 +4,8 @@ MODE="mode: count" ROOT=${TRAVIS_BUILD_DIR:-.}/../../.. # Grab the list of packages. -# Exclude the API from coverage as it will be covered by integration tests. -PACKAGES=`go list ./... | grep -v github.com/docker/swarm/api` +# Exclude the API and CLI from coverage as it will be covered by integration tests. +PACKAGES=`go list ./... | grep -v github.com/docker/swarm/api | grep -v github.com/docker/swarm/cli` # Create the empty coverage file. echo $MODE > goverage.report