annotate scripts/build.py @ 1:32e9f0e94c69
Fix running the unit tests from distutils.
author |
cmlenz |
date |
Sun, 22 May 2005 16:19:04 +0000 |
parents |
0b2a3581c48d |
children |
3ba3fb6f0054 |
rev |
line source |
0
|
1 #!/usr/bin/env python
|
|
2
|
|
3 from trac.core import ComponentManager
|
|
4
|
|
5 from bitten.recipe import RecipeExecutor
|
|
6 from bitten.python import cmd_distutils, rep_pylint
|
|
7 from bitten.general import cmd_make
|
|
8
|
|
9 if __name__ == '__main__':
|
|
10 mgr = ComponentManager()
|
|
11 executor = RecipeExecutor(mgr)
|
|
12 executor.execute()
|