Skip to content

Commit

Permalink
travis: fix lint and check-docs jobs not being run
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
KostyaEsmukov authored and kxepal committed Apr 12, 2020
1 parent 4a764af commit f026d7c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Expand Up @@ -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.
Expand All @@ -23,6 +19,9 @@ stages:
- lint

jobs:
allow_failures:
- python: "3.9-dev"

include:

# The `test` stage using the `python` matrix defined above
Expand Down

0 comments on commit f026d7c

Please sign in to comment.