Skip to content

Commit

Permalink
Switch to a full .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed May 15, 2020
1 parent f428496 commit a699c22
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .travis.yml
@@ -1,3 +1,34 @@
version: ~> 1.0
# Copied from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
language: python
import: zopefoundation/meta:travis-ci-config/minimal.yml
python:
- 2.7
- pypy
- 3.5
- 3.6
- 3.7
- 3.8
- pypy3

matrix:
include:
- name: "lint"
python: 3.7
env: TOXENV="lint"
- name: "coverage"
python: 3.7
env: TOXENV="coverage"
after_success:
- coveralls

install:
- pip install -U pip
- pip install -U tox-travis coveralls

script:
- tox

notifications:
email: false

cache: pip

0 comments on commit a699c22

Please sign in to comment.