[pypy-commit] pypy cleanup-test_lib_pypy: rm workaround for https://github.com/pytest-dev/pytest/issues/1965

rlamy pypy.commits at gmail.com
Thu Nov 29 00:58:05 EST 2018


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: cleanup-test_lib_pypy
Changeset: r95381:ad49d07c6e0b
Date: 2018-11-29 05:49 +0000
http://bitbucket.org/pypy/pypy/changeset/ad49d07c6e0b/

Log:	rm workaround for https://github.com/pytest-dev/pytest/issues/1965

diff --git a/extra_tests/test_sqlite3.py b/extra_tests/test_sqlite3.py
--- a/extra_tests/test_sqlite3.py
+++ b/extra_tests/test_sqlite3.py
@@ -116,7 +116,6 @@
     with pytest.raises(_sqlite3.ProgrammingError):
         cur.executemany(1,2,3,4,5)
 
- at pypy_only
 def test_connection_del(tmpdir):
     """For issue1325."""
     import os
@@ -146,7 +145,6 @@
 
         with pytest.raises(_sqlite3.OperationalError):
             open_many(False)
-        sys.exc_clear()
         gc.collect(); gc.collect()
         open_many(True)
     finally:


More information about the pypy-commit mailing list