summaryrefslogtreecommitdiff
path: root/test/engine
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-06-29 00:28:55 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-06-29 00:28:55 +0000
commitb3927fbb88c7988ec0397241ff40ecd72d1727bf (patch)
tree278f0a745e47570cb141f4fd4eb3319190be8296 /test/engine
parent2fb9221b797e5a29e34096c09d97615d859e95d1 (diff)
downloadsqlalchemy-b3927fbb88c7988ec0397241ff40ecd72d1727bf.tar.gz
inserting './lib/' into sys.path since PYTHONPATH no longer straightforward with latest setuptools
Diffstat (limited to 'test/engine')
-rw-r--r--test/engine/autoconnect_engine.py4
-rw-r--r--test/engine/proxy_engine.py4
-rw-r--r--test/engine/reflection.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/test/engine/autoconnect_engine.py b/test/engine/autoconnect_engine.py
index 39bcf3e53..69c2c33f5 100644
--- a/test/engine/autoconnect_engine.py
+++ b/test/engine/autoconnect_engine.py
@@ -1,8 +1,8 @@
+from testbase import PersistTest
+import testbase
from sqlalchemy import *
from sqlalchemy.ext.proxy import AutoConnectEngine
-from testbase import PersistTest
-import testbase
import os
#
diff --git a/test/engine/proxy_engine.py b/test/engine/proxy_engine.py
index df0c64398..d468e946f 100644
--- a/test/engine/proxy_engine.py
+++ b/test/engine/proxy_engine.py
@@ -1,10 +1,10 @@
+from testbase import PersistTest
+import testbase
import os
from sqlalchemy import *
from sqlalchemy.ext.proxy import ProxyEngine
-from testbase import PersistTest
-import testbase
#
# Define an engine, table and mapper at the module level, to show that the
diff --git a/test/engine/reflection.py b/test/engine/reflection.py
index d4e507464..f9fa4e40c 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -1,11 +1,11 @@
+from testbase import PersistTest
+import testbase
import sqlalchemy.ansisql as ansisql
from sqlalchemy import *
from sqlalchemy.exceptions import NoSuchTableError
-from testbase import PersistTest
-import testbase
import unittest, re, StringIO
class ReflectionTest(PersistTest):