Author: Brian Kearns <[email protected]>
Branch:
Changeset: r61032:15b403e9996f
Date: 2013-02-10 04:39 -0500
http://bitbucket.org/pypy/pypy/changeset/15b403e9996f/
Log: skip this test on older host pythons
diff --git a/pypy/module/test_lib_pypy/test_sqlite3.py
b/pypy/module/test_lib_pypy/test_sqlite3.py
--- a/pypy/module/test_lib_pypy/test_sqlite3.py
+++ b/pypy/module/test_lib_pypy/test_sqlite3.py
@@ -1,5 +1,9 @@
"""Tests for _sqlite3.py"""
+import sys
+if sys.version_info < (2, 7):
+ skip("lib_pypy._sqlite3 doesn't work with python < 2.7")
+
def test_list_ddl():
"""From issue996. Mostly just looking for lack of exceptions."""
from lib_pypy._sqlite3 import connect
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit