From 8535503f4af23816ad64b54a6af12cf8b22e4450 Mon Sep 17 00:00:00 2001 From: Matt Cooper Date: Sat, 4 May 2019 20:28:14 -0400 Subject: [PATCH] do an allowed-failure the right way --- .azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index c65a813a..cdf542fb 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -72,7 +72,7 @@ jobs: pip install -U --user tox displayName: 'Install tox' + # don't fail the build if this doesn't work! - script: | - tox - exit 0 # don't fail the build if this doesn't work! + tox --ignore-outcome=true displayName: 'Run tox'