Limnoria/.travis.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2014-07-04 23:19:30 +02:00
language: python
sudo: false
2014-07-04 23:19:30 +02:00
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
2015-08-01 23:13:11 +02:00
- "3.5-dev"
2015-05-18 23:01:45 +02:00
- "nightly"
2014-07-04 23:19:30 +02:00
- "pypy"
- "pypy3"
env:
- WITH_OPT_DEPS=true
- WITH_OPT_DEPS=false
2014-07-04 23:19:30 +02:00
install:
- if [ "$WITH_OPT_DEPS" = "true" ] ; then pip install -vr requirements.txt; fi
2014-07-04 23:19:30 +02:00
# command to run tests, e.g. python setup.py test
script:
- echo $TRAVIS_PYTHON_VERSION
- python setup.py install
2015-08-29 23:02:38 +02:00
- supybot-test test -v --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter
2014-07-04 23:19:30 +02:00
notifications:
email: false
matrix:
fast_finish: true
allow_failures:
- python: "nightly"
2015-08-30 15:55:26 +02:00
- python: "pypy3" # https://bitbucket.org/pypy/pypy/issues/2129/local-variable-val-referenced-before
exclude:
- python: "2.6"
env: WITH_OPT_DEPS=false
- python: "3.2"
env: WITH_OPT_DEPS=false
- python: "3.3"
env: WITH_OPT_DEPS=false
- python: "3.5-dev"
env: WITH_OPT_DEPS=false
- python: "nightly"
env: WITH_OPT_DEPS=false
- python: "pypy"
env: WITH_OPT_DEPS=false
- python: "pypy3"
env: WITH_OPT_DEPS=false