https://github.com/ProgVal/Limnoria
Raw File
Tip revision: d163d1a1a3c0058c2520ba7c2a730c235f397e7d authored by Valentin Lorentz on 23 February 2016, 19:52:36 UTC
Add support for authority certificates.
Tip revision: d163d1a
.travis.yml
language: python
sudo: false
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "3.5-dev"
  - "nightly"
  - "pypy"
  - "pypy3"
env:
  - WITH_OPT_DEPS=true
  - WITH_OPT_DEPS=false
install:
    - if [ "$WITH_OPT_DEPS" = "true" ] ; then pip install -vr requirements.txt; fi
# command to run tests, e.g. python setup.py test
script:
  - echo $TRAVIS_PYTHON_VERSION
  - python setup.py install
  - 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
  - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then pip install -v git+https://github.com/ProgVal/irctest.git; fi
  - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then python -m irctest irctest.controllers.limnoria; fi
notifications:
    email: false
matrix:
  fast_finish: true
  allow_failures:
    - 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
back to top