[pypy-commit] pypy py3.6: skip flaky test on darwin too

mattip pypy.commits at gmail.com
Tue Oct 22 03:43:50 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r97831:ce5b78b5c182
Date: 2019-10-22 10:42 +0300
http://bitbucket.org/pypy/pypy/changeset/ce5b78b5c182/

Log:	skip flaky test on darwin too

diff --git a/pypy/module/cpyext/test/test_eval.py b/pypy/module/cpyext/test/test_eval.py
--- a/pypy/module/cpyext/test/test_eval.py
+++ b/pypy/module/cpyext/test/test_eval.py
@@ -344,7 +344,7 @@
                     return module.get_flags()""", ns)
         assert ns['nested_flags']() == (0, 0)
 
-    @pytest.mark.xfail("sys.platform == 'win32'", reason='Hangs the process', run=False)
+    @pytest.mark.xfail("'linux' not in sys.platform", reason='Hangs the process', run=False)
     def test_recursive_function(self):
         module = self.import_extension('foo', [
             ("call_recursive", "METH_NOARGS",


More information about the pypy-commit mailing list