hy/.travis.yml
Zack M. Davis d4494151f4 experiment: can we convince Travis CI to test with nightly Python?
The docs say that "nightly" is supported, but it's less clear exactly
what our .travis.yml should say to make this happen.
2016-09-22 23:24:14 -07:00

32 lines
555 B
YAML

sudo: false
language: python
matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: nightly
env: TOXENV=py36
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=flake8
install: pip install tox
script: tox
cache:
directories:
- .tox
- $HOME/.cache/pip
after_success: make coveralls
notifications:
email:
- paultag@gmail.com
irc:
channels:
- "irc.freenode.net#woo-city-commits"
- "irc.freenode.net#hy"
on_success: change
on_failure: change
use_notice: false