From f026d7c591087e1d57e2dd49aeae4eed22c20596 Mon Sep 17 00:00:00 2001 From: Kostya Esmukov Date: Sat, 11 Apr 2020 23:15:10 +0300 Subject: [PATCH] travis: fix lint and check-docs jobs not being run Apparently Travis CI has made `matrix` and `jobs` as a single key: ``` - root: both matrix and jobs given, matrix overwrites jobs ``` thus the `jobs` key was ignored. --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ce86798..deee688 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,6 @@ python: - "3.8" - "3.9-dev" -matrix: - allow_failures: - - python: "3.9-dev" - install: pip install tox-travis tox tox-venv # Used by the `test` stage. @@ -23,6 +19,9 @@ stages: - lint jobs: + allow_failures: + - python: "3.9-dev" + include: # The `test` stage using the `python` matrix defined above