chore: build tag consistency (#654)

The integration tests and unit tests are currently expected to be
disjunct sets.  While we may change to being additive in the future,
this change makes us consistent by adding the integration exclusion tag
to a few non-integration test files where it was currently missing.
This commit is contained in:
Luke Kingland 2021-11-12 01:45:38 +09:00 committed by GitHub
parent 1bf17ec976
commit e20ac4c6b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,6 @@
//go:build !integration
// +build !integration
package cloudevents
import (

View File

@ -1,3 +1,6 @@
//go:build !integration
// +build !integration
package docker
import "testing"

View File

@ -1,3 +1,6 @@
//go:build !integration
// +build !integration
package docker
import (

View File

@ -1,3 +1,6 @@
//go:build !integration
// +build !integration
package knative
import (

View File

@ -1,3 +1,6 @@
//go:build !integration
// +build !integration
package function_test
import (