mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-13 13:17:48 +01:00
13 lines
287 B
Python
13 lines
287 B
Python
|
load("@pip_modules//:requirements.bzl", "requirement")
|
||
|
load("@rules_python//python:defs.bzl", "py_test")
|
||
|
|
||
|
py_test(
|
||
|
name = "tests",
|
||
|
srcs = glob(["**/*.py"]),
|
||
|
main = "test.py",
|
||
|
deps = [
|
||
|
"//nexus/meta_api/query_extensionner",
|
||
|
requirement("pytest"),
|
||
|
],
|
||
|
)
|