26 lines
436 B
YAML
26 lines
436 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- pypy
|
|
- pypy3
|
|
install:
|
|
- pip install -r requirements-travis.txt
|
|
- pip install -e .
|
|
script: pytest
|
|
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
|