Limnoria/.travis.yml

22 lines
610 B
YAML
Raw Normal View History

2014-07-04 23:19:30 +02:00
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
2014-07-04 23:19:30 +02:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -vr requirements.txt
# command to run tests, e.g. python setup.py test
script:
- echo $TRAVIS_PYTHON_VERSION
- python setup.py install
- supybot-test test --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter
notifications:
email: false
matrix:
fast_finish: true