File: BUILD.bazel

package info (click to toggle)
opencc 1.1.9%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,296 kB
  • sloc: cpp: 4,678; python: 350; javascript: 133; makefile: 125; sh: 59
file content (16 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (4)
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"),
    ],
)