mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
22 lines
505 B
Python
22 lines
505 B
Python
[
|
|
py_test(
|
|
name = test_dir + '-test',
|
|
size = "small",
|
|
srcs = ['autobuild_tester.py'],
|
|
main = 'autobuild_tester.py',
|
|
data = [
|
|
"//swift/xcode-autobuilder",
|
|
test_dir,
|
|
] + glob([test_dir + '/**/*']),
|
|
args = [
|
|
'$(location //swift/xcode-autobuilder)',
|
|
'$(location %s)' % test_dir,
|
|
]
|
|
)
|
|
for test_dir in glob(["*"], exclude_directories=0, exclude=['*.*', '.*'])
|
|
]
|
|
|
|
test_suite(
|
|
name='tests'
|
|
)
|