From da000e3b0b374f1ccdecd6bc2e7be0fe4735d500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Tue, 24 Sep 2019 16:16:27 +0200 Subject: [PATCH] Fix .travis.yml Apparentely, allow_failures must be within a matrix block. modified: .travis.yml --- .travis.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c6a69f4..cb240fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,23 @@ language: python + dist: xenial + python: 3.6 python: 3.7 python: 3.8-dev python: nightly -allow_failures: - - python: 3.8-dev - - python: nightly + +matrix: + allow_failures: + - python: 3.8-dev + - python: nightly + install: - pip install -e . + script: - pytest + deploy: provider: pypi user: tylerwince