Skip to content

Commit

Permalink
Fix .travis.yml
Browse files Browse the repository at this point in the history
Apparentely, allow_failures must be within a matrix block.

modified:   .travis.yml
  • Loading branch information
jugmac00 committed Sep 24, 2019
1 parent 6c29c5e commit da000e3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit da000e3

Please sign in to comment.