From 302183cdc54a09a0edd778381877667f882b5923 2014-01-21 19:56:20 From: MinRK Date: 2014-01-21 19:56:20 Subject: [PATCH] skip parametric tests on Python 3.4 they don't work, and we don't care --- diff --git a/IPython/testing/decorators.py b/IPython/testing/decorators.py index 68bede7..127d1bd 100644 --- a/IPython/testing/decorators.py +++ b/IPython/testing/decorators.py @@ -364,3 +364,6 @@ def onlyif_cmds_exist(*commands): "is installed".format(cmd)) raise e return null_deco + +if sys.version_info >= (3,4): + parametric = skip("Parametric tests don't work on Python >= 3.4")