Limnoria/.travis.yml

23 lines
686 B
YAML
Raw Normal View History

2013-01-04 19:38:35 +01:00
language: python
python:
2013-04-27 17:41:00 +02:00
- "2.6"
2013-01-04 19:38:35 +01:00
- "2.7"
- "3.2"
2013-05-14 20:02:09 +02:00
- "3.3"
- "3.4"
- "pypy"
2013-01-04 19:38:35 +01:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -vr requirements.txt
2013-01-04 19:38:35 +01:00
# command to run tests, e.g. python setup.py test
script:
2013-01-06 13:31:34 +01:00
- 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
after_success:
- sandbox/check_trans.py --core
- sandbox/check_trans.py plugins/
notifications:
on_success: never
on_failure: never