swh:1:snp:634d2b8906a7a2f6511ccb358da84e19b290d2c9
Raw File
Tip revision: f5db2338c54ac8cff34a594bc6c8788b43770b1f authored by Valentin Lorentz on 02 October 2016, 11:55:26 UTC
Reply: Restore supybot.reply.oneToOne in tests because it breaks Factoids.
Tip revision: f5db233
.travis.yml
language: python
sudo: false
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6-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
  - if [[ "$TRAVIS_PYTHON_VERSION" =~ ^3\.[4-9] ]] ; then pip install -v git+https://github.com/ProgVal/irctest.git; fi
  - echo "y" | pip uninstall limnoria || true
# 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=./plugins/ --no-network --disable-multiprocessing --exclude=./plugins/Scheduler --exclude=./plugins/Filter
  - 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.4"
      env: WITH_OPT_DEPS=false
    - python: "3.6-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