pebble/tools/tests/wscript
2025-01-27 11:38:16 -08:00

6 lines
196 B
Python

def build(bld):
tests = bld.path.ant_glob('test_*.py')
bld(rule="python -m unittest discover -s {} -p 'test_*.py'".format(bld.path.abspath()),
source=tests)
# vim:filetype=python