From c3147611ec6bbfd8b6e42637c73a68e29de1e2e7 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 8 Oct 2017 13:15:09 -0700 Subject: [PATCH] codecov needs argparse on 2.6 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 90818201..406eaeba 100644 --- a/tox.ini +++ b/tox.ini @@ -34,6 +34,8 @@ passenv = CI TRAVIS TRAVIS_* deps = codecov skip_install = true commands = + # install argparse for 2.6 + python -c 'import sys, pip; sys.version_info < (2, 7) and pip.main(["install", "argparse", "-q"])' coverage combine coverage report codecov -- 2.47.2