mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-23 17:07:34 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
13 lines
285 B
Python
13 lines
285 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_extensions",
|
|
requirement("pytest"),
|
|
],
|
|
)
|