Mercurial > hgsubversion
annotate tests/__init__.py @ 303:f423a8780832
Minor tweaks to how the tests are run.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Fri, 27 Mar 2009 03:42:52 +0100 |
parents | 79b0e059319d |
children | 5dc8fee7fc96 |
rev | line source |
---|---|
7
79b0e059319d
Reorganized the testing infrastructure a bit so that svnwrap is really separate from the rest of the project. Also made it easier to add more tests in the future without making the directory full of annoying files.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
1 import sys |
79b0e059319d
Reorganized the testing infrastructure a bit so that svnwrap is really separate from the rest of the project. Also made it easier to add more tests in the future without making the directory full of annoying files.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
2 import os |
79b0e059319d
Reorganized the testing infrastructure a bit so that svnwrap is really separate from the rest of the project. Also made it easier to add more tests in the future without making the directory full of annoying files.
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
3 sys.path.append(os.path.dirname(os.path.dirname(__file__))) |
303
f423a8780832
Minor tweaks to how the tests are run.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
7
diff
changeset
|
4 |
f423a8780832
Minor tweaks to how the tests are run.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
7
diff
changeset
|
5 from run import * |