mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 09:07:46 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
13 lines
277 B
Python
13 lines
277 B
Python
load("@pip_modules_external//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_test")
|
|
|
|
py_test(
|
|
name = "tests",
|
|
srcs = glob(["**/*.py"]),
|
|
main = "test.py",
|
|
deps = [
|
|
requirement("pytest"),
|
|
"//nexus/nlptools",
|
|
],
|
|
)
|