mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-16 11:24:35 -05:00
6cfc80454a
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.
14 lines
275 B
Python
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",
|
|
],
|
|
)
|