Skip to content

Commit e4b49e8

Browse files
committed
Remove overlapping tests with Prow
Signed-off-by: Adrian Orive <[email protected]>
1 parent 48ea4cb commit e4b49e8

File tree

1 file changed

+5
-26
lines changed

1 file changed

+5
-26
lines changed

.travis.yml

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@ cache:
55
- $HOME/.cache/go-build
66
- $GOPATH/pkg/mod
77

8-
os: linux
8+
os:
9+
- linux
10+
- osx
911

1012
go:
1113
- "1.13"
1214

13-
# A build matrix defines the K8s versions to use for e2e tests. Travis runs these in parallel
14-
env:
15-
- KIND_K8S_VERSION="v1.16.2"
16-
- KIND_K8S_VERSION="v1.15.3"
17-
- KIND_K8S_VERSION="v1.14.1"
18-
1915
git:
2016
depth: 3
2117

@@ -28,38 +24,22 @@ services: docker
2824
# we don't need to fetch them.
2925
install: skip
3026

31-
before_script: PATH=$PATH:$(pwd)
32-
33-
script: ./test_e2e.sh
27+
script: ./test.sh
3428

3529
jobs:
3630
include:
3731
- stage: linting
38-
env:
3932
before_script: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0
4033
script: ./scripts/verify.sh
4134

4235
- stage: golden
4336
# The golden_test.sh check if the the testdata is updated according to the current changes
4437
# To update the testdata use the Makefile targets `make generate-setup` then `make generate-testdata`
45-
env:
46-
before_script: skip
4738
script: ./golden_test.sh
4839

49-
- stage: local
50-
env:
51-
before_script: skip
52-
script: ./test.sh
53-
- stage: local
54-
os: osx
55-
env:
56-
before_script: skip
57-
script: ./test.sh
58-
5940
- stage: coverage
60-
# The following module is used to integrate the projct with goveralls.io. It allow us to easily sent the data.
41+
# The following module is used to integrate the project with coveralls.io. It allow us to easily sent the data.
6142
# More info: https://github.com/mattn/goveralls
62-
env:
6343
before_script: go get github.com/mattn/[email protected]
6444
script:
6545
- make test-coverage
@@ -68,7 +48,6 @@ jobs:
6848
stages:
6949
- linting
7050
- golden
71-
- local
7251
- test
7352
- coverage
7453

0 commit comments

Comments
 (0)