Mercurial > hgsubversion
view tests/run.py @ 87:b033d74be76b
fetch_command: in stupid non-diffy mode, take changed paths in account
Former code was checkouting all branch files for every converted
revision when diffs were not available in stupid mode. Now, only
changed items are requested.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Fri, 14 Nov 2008 16:18:24 -0600 |
parents | 6c9b7cf1c5aa |
children | 3b60f223893a |
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_fetch_renames import test_push_command import test_push_renames import test_push_dirs import test_tags def suite(): return unittest.TestSuite([test_fetch_command.suite(), test_fetch_command_regexes.suite(), test_fetch_renames.suite(), test_push_command.suite(), test_push_renames.suite(), test_push_dirs.suite(), test_tags.suite(), ]) if __name__ == '__main__': runner = unittest.TextTestRunner() runner.run(suite())