From fb8693c6eabc56efa6e9eba5676fe1580f649c28 Mon Sep 17 00:00:00 2001 From: Rene Milk Date: Tue, 8 Aug 2017 15:31:41 +0200 Subject: [PATCH] [ci] try to allow al appveyor builds to fail --- .ci/appveyor.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml index 1b371eba81..8d6878bd42 100644 --- a/.ci/appveyor.yml +++ b/.ci/appveyor.yml @@ -20,29 +20,33 @@ environment: CONDA: "C:\\Miniconda3" MARKER: "not grid" QT_API: "pyqt5" + ALLOW_FAIL: true - PYTHON_VERSION: "3.4" # currently 3.4.3 PYTHON_ARCH: "32" CONDA: "C:\\Miniconda3" MARKER: "grid" QT_API: "pyqt5" + ALLOW_FAIL: true - PYTHON_VERSION: "3.5" # currently 3.5.1 PYTHON_ARCH: "32" CONDA: "C:\\Miniconda35" MARKER: "not grid" QT_API: "pyqt5" - ALLOW_FAIL: "true" + ALLOW_FAIL: true - PYTHON_VERSION: "3.5" # currently 3.5.1 PYTHON_ARCH: "32" CONDA: "C:\\Miniconda35" MARKER: "grid" QT_API: "pyqt5" + ALLOW_FAIL: true matrix: allow_failures: - - ALLOW_FAIL: "true" + # every matrix entry where 'ALLOW_FAIL: true' is in is allowed to fail + - ALLOW_FAIL: true install: # If there is a newer build queued for the same PR, cancel this one.