summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_resultset.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-04-23 12:34:38 -0700
committerMike Bayer <mike_mp@zzzcomputing.com>2011-04-23 12:34:38 -0700
commit46ee78431c81d25ad38b76639ff91f76a5873573 (patch)
tree0012a83d8ac03297d87be149b56cb356ae411ef1 /test/aaa_profiling/test_resultset.py
parente1ec48b6d9bc63ce450a932dca7a6718b38ddc71 (diff)
downloadsqlalchemy-46ee78431c81d25ad38b76639ff91f76a5873573.tar.gz
mark all aaa_profiling tests with __requires__ = 'cpython',
Diffstat (limited to 'test/aaa_profiling/test_resultset.py')
-rw-r--r--test/aaa_profiling/test_resultset.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py
index 9ba3d6917..e2c6ecd50 100644
--- a/test/aaa_profiling/test_resultset.py
+++ b/test/aaa_profiling/test_resultset.py
@@ -5,7 +5,7 @@ NUM_RECORDS = 1000
class ResultSetTest(fixtures.TestBase, AssertsExecutionResults):
-
+ __requires__ = 'cpython',
__only_on__ = 'sqlite'
@classmethod
@@ -53,6 +53,7 @@ class ResultSetTest(fixtures.TestBase, AssertsExecutionResults):
[tuple(row) for row in t2.select().execute().fetchall()]
class ExecutionTest(fixtures.TestBase):
+ __requires__ = 'cpython',
__only_on__ = 'sqlite'
def test_minimal_connection_execute(self):