forked from progval/Limnoria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 1.16 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
notifications:
email: false
matrix:
fast_finish: true
allow_failures:
- python: "nightly"
- 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