Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
ignore vendor during integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Aug 12, 2017
1 parent 5f4df85 commit 21d5f5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ RUN mkdir -p $BP
WORKDIR $BP
ADD . .

RUN go get -v -t ./...
RUN go get -v -t $(go list ./... | grep -v /vendor/)

RUN go install -v ./buffalo

RUN go test -race ./...
RUN go test -race $(go list ./... | grep -v /vendor/)

RUN golint -set_exit_status ./...
RUN golint -set_exit_status $(go list ./... | grep -v /vendor/)


WORKDIR $GOPATH/src/
Expand All @@ -30,7 +30,7 @@ WORKDIR ./hello_world

RUN filetest -c $GOPATH/src/github.com/gobuffalo/buffalo/buffalo/cmd/filetests/new_travis.json

RUN go vet -x ./...
RUN go vet -x $(go list ./... | grep -v /vendor/)
RUN buffalo db create -a
RUN buffalo db migrate -e test
RUN buffalo test -race
Expand Down

0 comments on commit 21d5f5d

Please sign in to comment.