Merge pull request #1141 from hashicorp/f-travis

Try moving to newer Travis-CI infrastructure
This commit is contained in:
Ryan Uber 2015-07-28 10:42:56 -07:00
commit 6e38497ce9
2 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,7 @@
language: go
go:
- tip
- tip
branches:
only:
@ -9,4 +9,6 @@ branches:
install: make deps
script:
- make test
- make test
sudo: false

View File

@ -1,6 +1,7 @@
package agent
import (
"os"
"runtime"
"testing"
@ -10,8 +11,12 @@ import (
func TestSyslogFilter(t *testing.T) {
if runtime.GOOS == "windows" {
t.SkipNow()
t.Skip("Syslog not supported on Windows")
}
if os.Getenv("TRAVIS") == "true" {
t.Skip("Syslog not supported on travis-ci")
}
l, err := gsyslog.NewLogger(gsyslog.LOG_NOTICE, "LOCAL0", "consul")
if err != nil {
t.Fatalf("err: %s", err)