comparison tests/run.py @ 337:46e69be8e2c8

Reorganize to have a more conventional module structure. This means that hgsubversion now uses absolute imports instead of relative ones, which makes the tests more reliable.
author Augie Fackler <durin42@gmail.com>
date Wed, 13 May 2009 21:39:39 -0500
parents ce676eff002b
children 47c0110046dc
comparison
equal deleted inserted replaced
336:c0b943cef0c3 337:46e69be8e2c8
1 import os 1 import os
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.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
6 6
7 import test_binaryfiles 7 import test_binaryfiles
8 import test_diff 8 import test_diff
9 import test_externals 9 import test_externals
10 import test_fetch_branches 10 import test_fetch_branches