File: BUILD.bazel

package info (click to toggle)
opencc 1.1.9%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,380 kB
  • sloc: cpp: 4,730; python: 361; javascript: 133; makefile: 126; sh: 59
file content (16 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
load("@pip//:requirements.bzl", "requirement")
load("@rules_python//python:py_test.bzl", "py_test")

py_test(
    name = "test_opencc",
    srcs = ["test_opencc.py"],
    data = [
        "//test/testcases",
    ],
    imports = [".."],
    deps = [
        "//python/opencc",
        requirement("pytest"),
        requirement("exceptiongroup"),
    ],
)