From e5275cf3f26a19f68cdb32e0c749780865ba5d5f Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 24 Jun 2020 21:23:29 -0400 Subject: [PATCH] Skip yaml testing for on Python 3.4 --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 684056b8..56ef18f9 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,8 @@ envlist= [testenv] deps= unittest2 -extras = yaml +extras= + yaml commands= unit2 discover -s tests/unit -p test_*_py3.py @@ -28,6 +29,9 @@ commands= commands= unit2 discover -s tests/unit -p test_*_py2_py3.py +[testenv:py34] +extras= + [testenv:pypy] commands= unit2 discover -s tests/unit -p test_*_py2_py3.py