mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
6 lines
196 B
Python
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
|