summaryrefslogtreecommitdiff
path: root/run-checks
diff options
Diffstat (limited to 'run-checks')
-rwxr-xr-xrun-checks8
1 files changed, 4 insertions, 4 deletions
diff --git a/run-checks b/run-checks
index e89dd5b7b7..0e75ee457d 100755
--- a/run-checks
+++ b/run-checks
@@ -30,7 +30,7 @@ case "${1:-all}" in
SPREAD=1
;;
*)
- echo "Wrong flag ${1}. To run a single suite use --static, --unit, --spread, or --integration."
+ echo "Wrong flag ${1}. To run a single suite use --static, --unit, --spread."
exit 1
esac
@@ -116,12 +116,12 @@ if [ "$UNIT" = 1 ]; then
echo "mode: set" > .coverage/coverage.out
echo Building
- go build -tags=excludeintegration -v github.com/snapcore/snapd/...
+ go build -v github.com/snapcore/snapd/...
# tests
echo Running tests from $(pwd)
- for pkg in $(go list ./... | grep -v integration-tests); do
- $goctest -tags=excludeintegration -v -coverprofile=.coverage/profile.out $pkg
+ for pkg in $(go list ./...); do
+ $goctest -v -coverprofile=.coverage/profile.out $pkg
append_coverage .coverage/profile.out
done