about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-custom-main/BUILD.bazel
blob: c749b85eaac421a70d62ef11c81b3b65f8bdf3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

package(default_testonly = 1)

haskell_test(
    name = "binary-custom-main",
    srcs = ["Main.hs"],
    expected_covered_expressions_percentage = 50,
    tags = [
        "coverage-compatible",
    ],
    visibility = ["//visibility:public"],
    deps = ["//tests/hackage:base"],
)