Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
[build] Get CircleCI passing (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
conorbranagan authored Aug 1, 2017
1 parent 46424c1 commit 6502e4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ machine:
GOPATH: /home/ubuntu/.go_workspace
IMPORT_PATH: "github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME"
GLIDE_PATH: "$GOPATH/src/github.com/Masterminds/glide"
DATADOG_PATH: "$GOPATH/src/github.com/DataDog"
post:
- mkdir -p download
- test -e download/$GODIST || curl -o download/$GODIST https://storage.googleapis.com/golang/$GODIST
Expand All @@ -16,6 +17,7 @@ dependencies:
- rsync -azC --delete ./ "$GOPATH/src/$IMPORT_PATH/"
- go get -d github.com/Masterminds/glide
- cd $GLIDE_PATH && git checkout v0.12.3 && go install
- cd $DATADOG_PATH && rm -rf datadog-agent && git clone [email protected]:DataDog/datadog-agent

test:
override:
Expand Down
2 changes: 1 addition & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestDefaultConfig(t *testing.T) {
agentConfig := NewDefaultAgentConfig()

// assert that some sane defaults are set
assert.Equal(agentConfig.Enabled, true)
assert.Equal(agentConfig.Enabled, false)
assert.Equal(agentConfig.LogLevel, "info")
assert.Equal(agentConfig.AllowRealTime, true)
}
Expand Down

0 comments on commit 6502e4b

Please sign in to comment.