mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-15 15:09:23 +01:00
d84f6b4834
According to https://github.com/travis-ci/travis-ci/issues/1989 Travis will get Python versions from https://launchpad.net/~fkrull/+archive/deadsnakes and that PPA has python3.4 so it should be installed to them soon. Feel free to not merge this until it has happened.
17 lines
595 B
YAML
17 lines
595 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install:
|
|
- pip install pytz feedparser charade sqlalchemy python-gnupg python-dateutil --use-mirrors
|
|
# 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
|