Run test_official only on py3.7

This commit is contained in:
Noam Meltzer 2019-08-24 01:13:40 +03:00
parent 4328eaefb2
commit f379a34ccd

View file

@ -149,7 +149,7 @@ for thing in soup.select('h4 > a.anchor'):
@pytest.mark.parametrize(('method', 'data'), argvalues=argvalues, ids=names)
@pytest.mark.skipif(not sys.version_info >= (3, 6) or python_implementation() != 'CPython',
@pytest.mark.skipif(not sys.version_info >= (3, 7) or python_implementation() != 'CPython',
reason='follow_wrapped (inspect.signature) is not supported on this platform')
def test_official(method, data):
method(data)