From: David Lord Date: Sun, 8 Oct 2017 20:15:09 +0000 (-0700) Subject: codecov needs argparse on 2.6 X-Git-Tag: 2.10~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3147611ec6bbfd8b6e42637c73a68e29de1e2e7;p=thirdparty%2Fjinja.git codecov needs argparse on 2.6 --- 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