mirror of
https://github.com/github/codeql.git
synced 2026-04-20 06:24:03 +02:00
26 lines
479 B
Python
26 lines
479 B
Python
py_library(
|
|
name = "utils",
|
|
srcs = ["utils.py"],
|
|
)
|
|
|
|
[
|
|
py_test(
|
|
name = "test_%s" % test[:test.find("/")],
|
|
size = "small",
|
|
srcs = [test],
|
|
args = [
|
|
"$(location //swift/tools:qltest)",
|
|
],
|
|
data = [
|
|
"//swift/tools:qltest",
|
|
] + glob([test.replace("test.py", "*")]),
|
|
main = test,
|
|
deps = [":utils"],
|
|
)
|
|
for test in glob(["*/test.py"])
|
|
]
|
|
|
|
test_suite(
|
|
name = "qltest",
|
|
)
|