mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
14 lines
468 B
YAML
14 lines
468 B
YAML
language: python
|
|
python:
|
|
- "3.2"
|
|
- "2.7"
|
|
- "2.6"
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install:
|
|
- pip install pytz
|
|
# command to run tests, e.g. python setup.py test
|
|
script:
|
|
- echo $TRAVIS_PYTHON_VERSION
|
|
- if [ `echo $TRAVIS_PYTHON_VERSION | head -c 1` -eq 3 ] ; then ./sandbox/run_2to3.sh -j3; cd py3k/; python3 setup.py install; else python setup.py install; fi
|
|
- supybot-test test --plugins-dir=plugins/
|