From c737e3ee409f50dfe172d7ff463f794950ab7d14 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 2 Aug 2019 15:54:10 +0200 Subject: [PATCH] Skip more Python 2 tests --- test/test_api/test_signatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_api/test_signatures.py b/test/test_api/test_signatures.py index 5f6909f6..92ac2105 100644 --- a/test/test_api/test_signatures.py +++ b/test/test_api/test_signatures.py @@ -61,7 +61,7 @@ def test_param_default(Script, code, expected_params): ('def f(*args, x): pass\nf', 1, 'x', 'KEYWORD_ONLY'), ] ) -def test_param_kind_and_name(code, index, param_code, kind, Script): +def test_param_kind_and_name(code, index, param_code, kind, Script, skip_python2): func, = Script(code).goto_assignments() sig, = func.get_signatures() param = sig.params[index]