Mercurial > hgsubversion
diff tests/run.py @ 117:3afe404042a3
Add a disabled test for unrelated branches
The fix is not obvious but preserving the test helps fixing other stuff.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sat, 29 Nov 2008 11:25:01 -0600 |
parents | 9b5e528f67f8 |
children | c35f59aa200e |
line wrap: on
line diff
--- a/tests/run.py +++ b/tests/run.py @@ -4,6 +4,7 @@ import unittest sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +import test_fetch_branches import test_fetch_command import test_fetch_command_regexes import test_fetch_renames @@ -15,7 +16,8 @@ import test_push_eol import test_tags def suite(): - return unittest.TestSuite([test_fetch_command.suite(), + return unittest.TestSuite([test_fetch_branches.suite(), + test_fetch_command.suite(), test_fetch_command_regexes.suite(), test_fetch_renames.suite(), test_fetch_truncated.suite(),