comparison bitten/build/tests/__init__.py @ 233:8f816147620f

* Moved SlaveConfiguration logic into new module ([source:/trunk/bitten/build/config.py bitten.build.config]). * The configuration properties can now be used by recipe commands. For example, the Python tools use the Python interpreter specified by the `python.path` property, if specified. * A build recipe can reference configuration in command attributes, using the notation `${property.name:default value}`.
author cmlenz
date Fri, 30 Sep 2005 15:42:50 +0000
parents 60af98d66f11
children e75816cb2f45
comparison
equal deleted inserted replaced
232:b6e4896dc026 233:8f816147620f
7 # you should have received as part of this distribution. The terms 7 # you should have received as part of this distribution. The terms
8 # are also available at http://bitten.cmlenz.net/wiki/License. 8 # are also available at http://bitten.cmlenz.net/wiki/License.
9 9
10 import unittest 10 import unittest
11 11
12 from bitten.build.tests import api, pythontools 12 from bitten.build.tests import api, config, pythontools
13 13
14 def suite(): 14 def suite():
15 suite = unittest.TestSuite() 15 suite = unittest.TestSuite()
16 suite.addTest(api.suite()) 16 suite.addTest(api.suite())
17 suite.addTest(config.suite())
17 suite.addTest(pythontools.suite()) 18 suite.addTest(pythontools.suite())
18 return suite 19 return suite
19 20
20 if __name__ == '__main__': 21 if __name__ == '__main__':
21 unittest.main(defaultTest='suite') 22 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software