20 lines
379 B
YAML
20 lines
379 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- pypy
|
|
# command to install dependencies,
|
|
install:
|
|
- pip install -vr requirements.txt||true
|
|
# command to run tests, e.g. python setup.py test
|
|
script:
|
|
- echo $TRAVIS_PYTHON_VERSION
|
|
- cd .. && supybot-test Tweety
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
channels:
|
|
- "irc.efnet.net#supybot"
|
|
matrix:
|
|
fast_finish: true
|
|
|