15 lines
258 B
YAML
15 lines
258 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
|