mirror of https://github.com/knative/func.git
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:
parent
1bf17ec976
commit
e20ac4c6b7
|
@ -1,3 +1,6 @@
|
|||
//go:build !integration
|
||||
// +build !integration
|
||||
|
||||
package cloudevents
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
//go:build !integration
|
||||
// +build !integration
|
||||
|
||||
package docker
|
||||
|
||||
import "testing"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
//go:build !integration
|
||||
// +build !integration
|
||||
|
||||
package docker
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
//go:build !integration
|
||||
// +build !integration
|
||||
|
||||
package knative
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
//go:build !integration
|
||||
// +build !integration
|
||||
|
||||
package function_test
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue