2a4558f1d2
Using travis' container based infra which is faster & allows caching pip and is faster, also after the environment update hy seems happy with pypy2.5 so removing the hacks needed to pass that.
23 lines
383 B
YAML
23 lines
383 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "pypy"
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
cache: pip
|
|
# command to run tests
|
|
script: make travis
|
|
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
|