[pypy-commit] pypy py3.6: Ignore _cffi_backend when checking for usemodules in -A tests

rlamy pypy.commits at gmail.com
Fri Feb 22 20:49:27 EST 2019


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.6
Changeset: r96140:ed559ffaf9d1
Date: 2019-02-23 01:48 +0000
http://bitbucket.org/pypy/pypy/changeset/ed559ffaf9d1/

Log:	Ignore _cffi_backend when checking for usemodules in -A tests

diff --git a/pypy/tool/pytest/apptest.py b/pypy/tool/pytest/apptest.py
--- a/pypy/tool/pytest/apptest.py
+++ b/pypy/tool/pytest/apptest.py
@@ -147,7 +147,7 @@
             # They may be extension modules on CPython
             name = None
             for name in missing.copy():
-                if name == 'cpyext':
+                if name in ['cpyext', '_cffi_backend']:
                     missing.remove(name)
                     continue
                 try:


More information about the pypy-commit mailing list