Revision 39e0073b8f733a584a64d88b19fe89e7a5238e26 authored by Valentin Lorentz on 15 May 2015, 11:31:36 UTC, committed by Valentin Lorentz on 15 May 2015, 11:31:36 UTC
This reverts commit 3bc8758cf1b7fc7705540d19df76a9724f02bb84.
1 parent 3bc8758
Raw File
.travis.yml
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "pypy"
  - "pypy3"
# 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
back to top