[pypy-commit] pypy py3k: Fix skipping of AppTestApi

rlamy pypy.commits at gmail.com
Sun Sep 11 15:56:51 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3k
Changeset: r87009:038cf89fd5e2
Date: 2016-09-11 20:56 +0100
http://bitbucket.org/pypy/pypy/changeset/038cf89fd5e2/

Log:	Fix skipping of AppTestApi

diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py
--- a/pypy/module/cpyext/test/test_cpyext.py
+++ b/pypy/module/cpyext/test/test_cpyext.py
@@ -255,9 +255,9 @@
         # enabled automatically by pypy.conftest.
         return leaking
 
+ at pytest.mark.xfail(reason="Skipped until other tests in this file are unskipped")
 class AppTestApi(LeakCheckingTest):
     def setup_class(cls):
-        skip("Skipped until other tests in this file are unskipped")
         from rpython.rlib.clibffi import get_libc_name
         if cls.runappdirect:
             cls.libc = get_libc_name()


More information about the pypy-commit mailing list