diff --git a/tests/commands/test_convert.py b/tests/commands/test_convert.py index ea0c3c4..ed6f9e2 100644 --- a/tests/commands/test_convert.py +++ b/tests/commands/test_convert.py @@ -1,7 +1,13 @@ +import sys + +import pytest + from bonobo.util.environ import change_working_directory from bonobo.util.testing import all_runners +@pytest.mark.skipif(sys.version_info < (3, 6), + reason="python 3.5 does not preserve kwargs order and this cant pass for now") @all_runners def test_convert(runner, tmpdir): csv_content = 'id;name\n1;Romain'