From 8736c99b74414036e2635254cd1c98ec3c0bbd93 Mon Sep 17 00:00:00 2001 From: Kyle Lemons Date: Sun, 3 Apr 2016 10:25:58 -0700 Subject: [PATCH] Whitelist tests for travis-ci --- .travis.yml | 2 ++ usb/device_test.go | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b72fc48..9ebb23b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ go: - 1.6 - tip +script: go test -v -test.run='BCD|Noop|Parse' ./... + addons: apt: packages: diff --git a/usb/device_test.go b/usb/device_test.go index 6eebdcf..2deb7f7 100644 --- a/usb/device_test.go +++ b/usb/device_test.go @@ -15,8 +15,9 @@ package usb_test import ( - . "github.com/kylelemons/gousb/usb" "testing" + + . "github.com/kylelemons/gousb/usb" ) func TestGetStringDescriptorAscii(t *testing.T) {