Changeset 35296
- Timestamp:
- 04/19/06 16:34:37 (4 years ago)
- Files:
-
- PortalTransforms/trunk/tests/test_transforms.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PortalTransforms/trunk/tests/test_transforms.py
r35285 r35296 157 157 # FIXME some tests do not pass - exclude them 158 158 TR_NAMES = None 159 EXCLUDE_TESTS = ['tidy_html', 160 'word_to_html', 161 'xls_to_html', 162 'ooo_to_html', 163 'rest_to_html', 164 ] 159 165 160 166 def make_tests(test_descr=TRANSFORMS_TESTINFO): … … 171 177 except: 172 178 continue 173 #179 174 180 if TR_NAMES is not None and not _transform.name() in TR_NAMES: 175 181 print 'skip test for', _transform.name() 182 continue 183 184 if EXCLUDE_TESTS is not None and _transform.name() in EXCLUDE_TESTS: 185 print 'exclude %s testing for input %s' % ( _transform.name(), tr_input) 176 186 continue 177 187 … … 188 198 189 199 def test_suite(): 190 return TestSuite([])191 #return TestSuite([makeSuite(test) for test in make_tests()])200 #return TestSuite([]) 201 return TestSuite([makeSuite(test) for test in make_tests()]) 192 202 193 203 if __name__=='__main__':
