Mercurial > hgsubversion
view tests/run.py @ 17:31aa63ac778c
Fix a stupid mistake. A reminder of why Nose is handy.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 07 Oct 2008 22:19:18 -0500 |
parents | 48a44546c12f |
children | 1f8854804795 |
line wrap: on
line source
import os import sys import unittest sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import test_fetch_command import test_fetch_command_regexes import test_push_command def suite(): return unittest.TestSuite([test_fetch_command.suite(), test_fetch_command_regexes.suite(), test_push_command.suite(), ]) if __name__ == '__main__': runner = unittest.TextTestRunner() runner.run(suite())