26 lines
470 B
YAML
26 lines
470 B
YAML
language: python
|
|
python:
|
|
- "pypy"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "2.6"
|
|
# command to install dependencies
|
|
install: "pip install -r requirements.txt --use-mirrors"
|
|
# # command to run tests
|
|
script: nosetests
|
|
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
|
|
# blacklist
|
|
branches:
|
|
except:
|
|
- debian
|