mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
22 lines
494 B
YAML
22 lines
494 B
YAML
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 2.6 # these are just to make travis's UI a bit prettier
|
|
env: TOXENV=py26
|
|
- python: 2.7
|
|
env: TOXENV=py27
|
|
- python: 3.3
|
|
env: TOXENV=py33
|
|
- python: 3.4
|
|
env: TOXENV=py34
|
|
- python: 3.5
|
|
env: TOXENV=py35
|
|
- python: nightly
|
|
env: TOXENV=py36
|
|
- python: pypy
|
|
env: TOXENV=pypy
|
|
|
|
install: pip install tox && tox --notest
|
|
|
|
script: tox
|