Changeset 177 for trunk/src/foundation/systems/domainmodeltest.py
- Timestamp:
- 06/03/09 21:43:57 (15 months ago)
- Files:
-
- 1 modified
-
trunk/src/foundation/systems/domainmodeltest.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/foundation/systems/domainmodeltest.py
r175 r177 11 11 ] 12 12 if not self.runDependencyVersionTests: 13 print "Skipping system dependency version tests. Set\n" + \ 14 "export SYSTEM_DEPENDENCY_VERSION_TESTS=1" + \ 15 "in your environment to run these extended tests." + \ 13 msg = "Warning: Testing single version of dependencies only. If" 14 print msg 15 msg = "Warning: you want to test all versions, simply export:\n" 16 msg += "Warning: SYSTEM_DEPENDENCY_VERSION_TESTS=1 in your environment." 17 print msg 16 18 else: 17 19 suites += [ 18 20 unittest.makeSuite(TestDm0_4), 19 21 unittest.makeSuite(TestDm0_3), 22 unittest.makeSuite(TestDm0_6SQLObj0_10_6), 23 unittest.makeSuite(TestDm0_6SQLObj0_10_5), 20 24 unittest.makeSuite(TestDm0_6SQLObj0_10_4), 21 25 unittest.makeSuite(TestDm0_6SQLObj0_10_3), … … 112 116 dep = "http://pypi.python.org/packages/2.4/S/SQLObject/SQLObject-0.10.4-py2.4.egg" 113 117 118 class SQLObj0_10_5(base.ExplicitDependency): 119 dep = "http://pypi.python.org/packages/2.4/S/SQLObject/SQLObject-0.10.5-py2.4.egg" 120 121 class SQLObj0_10_6(base.ExplicitDependency): 122 dep = "http://pypi.python.org/packages/2.4/S/SQLObject/SQLObject-0.10.6-py2.4.egg" 123 114 124 115 125 class TestDm0_6SQLObj0_7_10(SQLObj0_7_10, TestDm0_6): … … 155 165 pass 156 166 167 class TestDm0_6SQLObj0_10_5(SQLObj0_10_5, TestDm0_6): 168 pass 169 170 class TestDm0_6SQLObj0_10_6(SQLObj0_10_6, TestDm0_6): 171 pass 172 157 173 158 174 if __name__ == "__main__":
