aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-07-20 13:52:19 -0700
committerDavid Lord <davidism@gmail.com>2019-07-20 13:52:19 -0700
commit94cecd4892a401dfe57387ed1171867335693b07 (patch)
tree6a616a27413d5f611ee65ecd251c505c9c366e9a /tox.ini
parentd04d9998d325db0e54d1cfa037542a30a6c8bcd6 (diff)
downloadjinja-94cecd4892a401dfe57387ed1171867335693b07.tar.gz
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.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
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