Files
codeql/swift/xcode-autobuilder/tests/BUILD.bazel

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'
)