From 93a58c54968a02dcda33b01f0130c42dfe8ade6e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 26 Sep 2023 16:16:56 -0700 Subject: [PATCH] tox: set ignore_errors This doesn't actually *ignore* errors, it just means we continue running commands after one errors out instead of immediately bailing. This avoids problems like "the tests don't run if check-needles fails, so then the coverage reports fail because there's no coverage.xml". Signed-off-by: Adam Williamson --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 12d62693..7f385033 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ skipsdist = True envlist = py37,py38,py39,py310,py311,coverage-report skip_missing_interpreters = true [testenv] +ignore_errors = true deps = pytest jsonschema @@ -18,6 +19,7 @@ setenv = [testenv:coverage-report] skip_install = true +ignore_errors = true deps = diff-cover pylint