pebble/tools/tests/wscript

7 lines
196 B
Text
Raw Normal View History

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