Skip to content

Commit

Permalink
- rewritten Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed May 20, 2019
1 parent 65df9bb commit 00a7203
Showing 1 changed file with 33 additions and 6 deletions.
39 changes: 33 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,38 @@
language: python
sudo: false
python:
- 2.7

matrix:
include:
- python: "3.6"
env: TOXENV=lint
- python: "3.6"
env: TOXENV=coverage
after_success:
- coverage combine
- coveralls
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "3.7"
env: TOXENV=py37
dist: xenial
- python: "3.8-dev"
env: TOXENV=py38
dist: xenial

install:
- python bootstrap.py
- bin/buildout
- travis_retry pip install -U pip setuptools
- travis_retry pip install -U tox coveralls coverage

script:
- bin/test -v1
- travis_retry tox

notifications:
email: false

cache:
pip: true
directories:
- eggs/

0 comments on commit 00a7203

Please sign in to comment.