constellation/internal/license/integration/BUILD.bazel
Markus Rudy d599b80b2a license: enable Bazel-based integration testing
Co-authored-by: malt3 <malt3@users.noreply.github.com>
2023-11-23 13:48:54 +01:00

15 lines
298 B
Python

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