diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2004-07-25 12:25:37 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2004-07-25 12:25:37 +0000 |
commit | 03d61844cddff31ee00b1f5847276f9ba9a488fd (patch) | |
tree | 16f426df2cd5d0c2e0adc3e33aca437772711210 /python/tests | |
parent | f10b3e0841e39a083967ad47a4e6f3c4d0c7fe70 (diff) | |
download | lasso-03d61844cddff31ee00b1f5847276f9ba9a488fd.tar.gz lasso-03d61844cddff31ee00b1f5847276f9ba9a488fd.tar.xz lasso-03d61844cddff31ee00b1f5847276f9ba9a488fd.zip |
modified sys.path so that python test suite can run before lasso is installed.
Diffstat (limited to 'python/tests')
-rwxr-xr-x | python/tests/tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/tests/tests.py b/python/tests/tests.py index 818abe3a..de359ee5 100755 --- a/python/tests/tests.py +++ b/python/tests/tests.py @@ -30,6 +30,9 @@ import imp import sys import unittest +sys.path.insert(0, '..') +sys.path.insert(0, '../.libs') + testSuites = ( 'login_tests', |