Author: Ronan Lamy <[email protected]>
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:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to