[pypy-commit] pypy py3.5: Skip another test that cannot work with -A

rlamy pypy.commits at gmail.com
Sat Dec 16 00:16:32 EST 2017


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r93437:7597dd2c875f
Date: 2017-12-16 04:52 +0000
http://bitbucket.org/pypy/pypy/changeset/7597dd2c875f/

Log:	Skip another test that cannot work with -A

diff --git a/pypy/module/marshal/test/test_marshal.py b/pypy/module/marshal/test/test_marshal.py
--- a/pypy/module/marshal/test/test_marshal.py
+++ b/pypy/module/marshal/test/test_marshal.py
@@ -1,3 +1,4 @@
+import pytest
 from rpython.tool.udir import udir
 
 
@@ -228,6 +229,7 @@
                    BadReader(marshal.dumps(value)))
 
 
+ at pytest.mark.skipif('config.option.runappdirect')
 class AppTestSmallLong(AppTestMarshal):
     spaceconfig = AppTestMarshal.spaceconfig.copy()
     spaceconfig["objspace.std.withsmalllong"] = True


More information about the pypy-commit mailing list