From: David Lord Date: Sat, 20 Jul 2019 20:52:19 +0000 (-0700) Subject: ignore coverage parse errors X-Git-Tag: 2.10.2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94cecd4892a401dfe57387ed1171867335693b07;p=thirdparty%2Fjinja.git ignore coverage parse errors Azure has Python 2.7.15 and Python 3.5.5, which can't parse async code. Later patch versions can parse it fine, so this can be removed if Azure updates. --- diff --git a/tox.ini b/tox.ini index fcabc6b1..b4e3afdc 100644 --- a/tox.ini +++ b/tox.ini @@ -31,4 +31,5 @@ deps = coverage skip_install = true commands = coverage combine - coverage xml + # Ignoring errors because 2.7.15 and 3.5.5 on Azure can't parse async files. + coverage xml --ignore-errors