mirror of
https://github.com/google/pebble.git
synced 2025-03-20 02:51:21 +00:00
7 lines
196 B
Text
7 lines
196 B
Text
|
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
|