hscloud/go/mirko/tests/sql/BUILD.bazel

20 lines
443 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "go_default_test",
srcs = ["sql_test.go"],
deps = [
"//go/mirko/tests/sql/migrations",
"@com_github_golang_migrate_migrate_v4//database/sqlite3",
],
)
go_test(
name = "sql_test",
srcs = ["sql_test.go"],
deps = [
"//go/mirko/tests/sql/migrations",
"@com_github_golang_migrate_migrate_v4//database/sqlite3",
],
)