From 79f2bb200f9aae6e84e065d7915107d196299402 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 21 Jun 2015 17:32:19 +0200 Subject: [PATCH] Do not run integration tests on i386 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d28825e4b..67d9a9ef5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ install: script: - gox -verbose -os "${GOX_OS}" -tags "release" ./cmd/restic - go run run_tests.go all.cov - - GOARCH=386 go test ./... + - GOARCH=386 RESTIC_TEST_INTEGRATION=0 go test ./... - goveralls -coverprofile=all.cov -service=travis-ci -repotoken "$COVERALLS_TOKEN" || true - gofmt -l *.go */*.go */*/*.go - test -z "$(gofmt -l *.go */*.go */*/*.go)"