good morning!!!!

Skip to content
Snippets Groups Projects
Commit 2e247705 authored by Elad_'s avatar Elad_ Committed by Felix Lange
Browse files

travis.yml: add TEST_PACKAGES to speed up swarm testing (#16456)

This commit is meant to allow ecosystem projects such as ethersphere
to minimize CI build times by specifying an environment variable with
the packages to run tests on.

If the environment variable isn't defined the build script will test
all packages so this shouldn't affect the main go-ethereum repository.
parent 3caf16b1
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ matrix: ...@@ -12,7 +12,7 @@ matrix:
- sudo chmod 666 /dev/fuse - sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf - sudo chown root:$USER /etc/fuse.conf
- go run build/ci.go install - go run build/ci.go install
- go run build/ci.go test -coverage - go run build/ci.go test -coverage $TEST_PACKAGES
# These are the latest Go versions. # These are the latest Go versions.
- os: linux - os: linux
...@@ -24,7 +24,7 @@ matrix: ...@@ -24,7 +24,7 @@ matrix:
- sudo chmod 666 /dev/fuse - sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf - sudo chown root:$USER /etc/fuse.conf
- go run build/ci.go install - go run build/ci.go install
- go run build/ci.go test -coverage - go run build/ci.go test -coverage $TEST_PACKAGES
- os: osx - os: osx
go: "1.10" go: "1.10"
...@@ -34,7 +34,7 @@ matrix: ...@@ -34,7 +34,7 @@ matrix:
- brew install caskroom/cask/brew-cask - brew install caskroom/cask/brew-cask
- brew cask install osxfuse - brew cask install osxfuse
- go run build/ci.go install - go run build/ci.go install
- go run build/ci.go test -coverage - go run build/ci.go test -coverage $TEST_PACKAGES
# This builder only tests code linters on latest version of Go # This builder only tests code linters on latest version of Go
- os: linux - os: linux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment