forked from progval/Limnoria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
63 lines (61 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language: python
sudo: true
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:
include:
- python: "2.6"
env: WITH_OPT_DEPS=false
dist: trusty
- python: "2.7"
env: WITH_OPT_DEPS=false
dist: trusty
- python: "2.7"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.2"
env: WITH_OPT_DEPS=false
dist: trusty
- python: "3.2"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.3"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.4"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.5"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.6"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "3.7"
env: WITH_OPT_DEPS=false
dist: xenial
- python: "3.7"
env: WITH_OPT_DEPS=true
dist: xenial
- python: "3.8-dev"
env: WITH_OPT_DEPS=true
dist: xenial
- python: "nightly"
env: WITH_OPT_DEPS=true
dist: xenial
- python: "pypy"
env: WITH_OPT_DEPS=true
dist: trusty
- python: "pypy3.3-5.2-alpha1"
env: WITH_OPT_DEPS=true
dist: trusty