Mercurial > hgsubversion
comparison 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 |
comparison
equal
deleted
inserted
replaced
116:30580c05dccc | 117:3afe404042a3 |
---|---|
2 import sys | 2 import sys |
3 import unittest | 3 import unittest |
4 | 4 |
5 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | 5 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
6 | 6 |
7 import test_fetch_branches | |
7 import test_fetch_command | 8 import test_fetch_command |
8 import test_fetch_command_regexes | 9 import test_fetch_command_regexes |
9 import test_fetch_renames | 10 import test_fetch_renames |
10 import test_fetch_truncated | 11 import test_fetch_truncated |
11 import test_push_command | 12 import test_push_command |
13 import test_push_dirs | 14 import test_push_dirs |
14 import test_push_eol | 15 import test_push_eol |
15 import test_tags | 16 import test_tags |
16 | 17 |
17 def suite(): | 18 def suite(): |
18 return unittest.TestSuite([test_fetch_command.suite(), | 19 return unittest.TestSuite([test_fetch_branches.suite(), |
20 test_fetch_command.suite(), | |
19 test_fetch_command_regexes.suite(), | 21 test_fetch_command_regexes.suite(), |
20 test_fetch_renames.suite(), | 22 test_fetch_renames.suite(), |
21 test_fetch_truncated.suite(), | 23 test_fetch_truncated.suite(), |
22 test_push_command.suite(), | 24 test_push_command.suite(), |
23 test_push_renames.suite(), | 25 test_push_renames.suite(), |