Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbourgon committed Dec 31, 2019
1 parent c0f8510 commit afaf306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions circle.yml
Expand Up @@ -11,9 +11,9 @@ jobs:
EUREKA_ADDR: http://localhost:8761/eureka
steps:
- checkout
- run: wget -q https://storage.googleapis.com/golang/go1.11.linux-amd64.tar.gz
- run: wget -q https://storage.googleapis.com/golang/go1.13.5.linux-amd64.tar.gz
- run: sudo rm -rf /usr/local/go
- run: sudo tar -C /usr/local -xzf go1.11.linux-amd64.tar.gz
- run: sudo tar -C /usr/local -xzf go1.13.5.linux-amd64.tar.gz
- run: docker-compose -f docker-compose-integration.yml up -d --force-recreate
- run: go get -t github.com/go-kit/kit/...
- run: go test -v -race -tags integration github.com/go-kit/kit/...
5 changes: 2 additions & 3 deletions transport/nats/subscriber_test.go
Expand Up @@ -9,11 +9,10 @@ import (
"testing"
"time"

"github.com/nats-io/nats-server/server"
"github.com/nats-io/nats.go"

"github.com/go-kit/kit/endpoint"
natstransport "github.com/go-kit/kit/transport/nats"
"github.com/nats-io/nats-server/server"
"github.com/nats-io/nats.go"
)

type TestResponse struct {
Expand Down

0 comments on commit afaf306

Please sign in to comment.