2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00
Files
python/pyste/tests/runtests.py
Bruno da Silva de Oliveira ba0fcd27c3 - Various bug fixes
- Changed the internal code to the way it was


[SVN r18941]
2003-07-04 22:47:27 +00:00

18 lines
479 B
Python

#!/usr/bin/python
import sys
sys.path.append('../src/Pyste')
import unittest
import os.path
from glob import glob
if __name__ == '__main__':
loader = unittest.defaultTestLoader
tests = []
for name in glob('*UT.py'):
module = __import__(os.path.splitext(name)[0])
tests.append(loader.loadTestsFromModule(module))
runner = unittest.TextTestRunner()
result = runner.run(unittest.TestSuite(tests))
sys.exit(not result.wasSuccessful())