]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Fixed an import that prevented "pypy setup.py test" from working
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 1 May 2015 13:38:21 +0000 (09:38 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 1 May 2015 13:38:21 +0000 (09:38 -0400)
correctly.
fixes #3406

doc/build/changelog/changelog_09.rst
lib/sqlalchemy/testing/plugin/plugin_base.py

index 778881b909bba789a8709cf5a084e9b335d655a4..e66203ed343869d6cf0d3d08e2775229c0ca94e6 100644 (file)
 .. changelog::
     :version: 0.9.10
 
+    .. change::
+        :tags: bug, tests, pypy
+        :tickets: 3406
+        :versions: 1.0.4
+
+        Fixed an import that prevented "pypy setup.py test" from working
+        correctly.
+
     .. change::
         :tags: bug, engine
         :tickets: 3375
index 14cf1eb31dc315dc8e189321c2bb277b309d4bc5..84b7a6d5e9f15e3904fb6c605eef4f63d757907d 100644 (file)
@@ -19,6 +19,7 @@ try:
     # honor it unless nose is imported too...
     from nose import SkipTest
 except ImportError:
+    import pytest
     from _pytest.runner import Skipped as SkipTest
 
 import sys