1load("@io_bazel_rules_go//go:def.bzl", "go_test") 2 3go_test( 4 name = "phases_test", 5 srcs = ["phases_test.go"], 6 args = [ 7 # force t.Log to print even if the test passes 8 # dont use this in production 9 "--test.v", 10 ], 11 tags = [ 12 "f2-example", # dont use outside f2/examples, stops deps test from failing 13 "integration", 14 ], 15 visibility = ["//visibility:public"], 16 deps = [ 17 "//pkg/lib/fog", 18 "//test/f2", 19 "@tools_gotest_v3//assert", 20 ], 21)