summaryrefslogtreecommitdiff
path: root/test/sql/alltests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/alltests.py')
-rw-r--r--test/sql/alltests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/sql/alltests.py b/test/sql/alltests.py
index 5f5c68904..f49cf14d4 100644
--- a/test/sql/alltests.py
+++ b/test/sql/alltests.py
@@ -1,4 +1,4 @@
-import testbase
+import testenv; testenv.configure_for_tests()
import unittest
@@ -8,20 +8,20 @@ def suite():
'sql.constraints',
'sql.generative',
-
+
# SQL syntax
'sql.select',
'sql.selectable',
- 'sql.case_statement',
+ 'sql.case_statement',
'sql.labels',
'sql.unicode',
-
+
# assorted round-trip tests
'sql.functions',
'sql.query',
'sql.quote',
'sql.rowcount',
-
+
# defaults, sequences (postgres/oracle)
'sql.defaults',
)
@@ -34,4 +34,4 @@ def suite():
return alltests
if __name__ == '__main__':
- testbase.main(suite())
+ testenv.main(suite())