diff --git a/tests/integration/authorizations_test.go b/tests/integration/authorizations_test.go index cc3a329..2ad934c 100644 --- a/tests/integration/authorizations_test.go +++ b/tests/integration/authorizations_test.go @@ -3,6 +3,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build integration + package tests import ( diff --git a/tests/integration/doc.go b/tests/integration/doc.go new file mode 100644 index 0000000..24a7ce9 --- /dev/null +++ b/tests/integration/doc.go @@ -0,0 +1,6 @@ +// Package tests contains integration tests. +// +// These tests call the live GitHub API, and therefore require a little more +// setup to run. See https://github.com/google/go-github/tree/master/tests/integration +// for more information. +package tests diff --git a/tests/integration/github_test.go b/tests/integration/github_test.go index 16e383f..7cdfd01 100644 --- a/tests/integration/github_test.go +++ b/tests/integration/github_test.go @@ -3,9 +3,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// These tests call the live GitHub API, and therefore require a little more -// setup to run. See https://github.com/google/go-github/tree/master/tests/integration -// for more information +// +build integration package tests