forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (47 loc) · 1.55 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
language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
- EXTRA=1
- GEVENT_FILE=thread
matrix:
allow_failures:
- env: GEVENT_BACKEND=signalfd
- python: 2.5
env: DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
include:
- python: 2.7
env: DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
- python: 2.7
env: DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3 GEVENT_FILE=thread
- python: 2.7
env: GEVENT_BACKEND=select GEVENTSETUP_EV_VERIFY=3
- python: 2.7
env: GEVENT_BACKEND=poll GEVENTSETUP_EV_VERIFY=3
- python: 2.7
env: GEVENT_BACKEND=nosigmask,noinotify GEVENTSETUP_EV_VERIFY=3
- python: 2.6
env: DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
- python: 2.7
env: GEVENT_BACKEND=signalfd
- python: 2.5
env: DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
install:
- pip install --use-mirrors cython
- cython --version
- pip install --use-mirrors greenlet psycopg2 pysendfile web.py
- if [ "x$TRAVIS_PYTHON_VERSION" == "x2.5" ]; then sudo apt-get install libssl-dev libkrb5-dev libbluetooth-dev; pip install --use-mirrors sslfix; fi
- if [ "x$TRAVIS_PYTHON_VERSION" == "x2.7" ]; then pip install --use-mirrors -q pep8; fi
- python -c 'import greenlet; print greenlet, greenlet.__version__; import psycopg2; print psycopg2, psycopg2.__version__; import web; print web, web.__version__'
- export CYTHON=`which cython`
- python setup.py install
script:
- cd greentest && python testrunner.py --full --expected ../known_failures.txt
notifications:
email:
recipients:
on_success: change
on_failure: change