constellation/internal/license/integration/BUILD.bazel
Markus Rudy 6cfc80454a license: dedicated module for integration test
The integration test for the license module depends on network
connectivity and should be Bazel-tagged as such. Since the unit tests do
not have a network dependency, we should not apply the tag to those. The
easiest way to do this in a Gazelle-compliant way is to move the
integration test into its own module.
2023-11-23 13:48:54 +01:00

14 lines
275 B
Python

load("//bazel/go:go_test.bzl", "go_test")
go_test(
name = "integration_test",
srcs = ["license_integration_test.go"],
tags = [
"requires-network",
],
deps = [
"//internal/license",
"@com_github_stretchr_testify//assert",
],
)