File tree 2 files changed +24
-36
lines changed
2 files changed +24
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,38 +16,41 @@ language: python
16
16
matrix :
17
17
include :
18
18
- python : " 3.4"
19
- env : EVENT_LOOP=asyncio
19
+ env :
20
+ - EVENT_LOOP=asyncio
21
+ - TIMEOUT=2.0
20
22
- python : " 3.5"
21
- env : EVENT_LOOP=asyncio
23
+ env :
24
+ - EVENT_LOOP=asyncio
25
+ - TIMEOUT=2.0
22
26
- python : " 3.5"
23
- env : EVENT_LOOP=uvloop
27
+ env :
28
+ - EVENT_LOOP=uvloop
29
+ - TIMEOUT=2.0
24
30
before_script : " pip install .[uvloop]"
25
31
- python : " 3.6"
26
- env : EVENT_LOOP=asyncio
32
+ env :
33
+ - EVENT_LOOP=asyncio
34
+ - TIMEOUT=2.0
27
35
- python : " 3.6"
28
- env : EVENT_LOOP=uvloop
36
+ env :
37
+ - EVENT_LOOP=uvloop
38
+ - TIMEOUT=2.0
29
39
before_script : " pip install .[uvloop]"
30
- - python : " pypy3" # TODO: We actually want pypy3 >= 5.7.0
31
- env : EVENT_LOOP=asyncio
40
+ - python : " pypy3" # 2017-08-05: It's pypy3-5.8.0
41
+ env :
42
+ - EVENT_LOOP=asyncio
43
+ - TIMEOUT=16.0
32
44
# TODO: Re-enable once pypy3 is able to compile uvloop
33
- # - python: "pypy3" # TODO: We actually want pypy3 >= 5.7.0
34
- # env: EVENT_LOOP=uvloop
35
- # before_script: "pip install .[uvloop]"
45
+ - python : " pypy3" # 2017-08-05: It's pypy3-5.8.0
46
+ env :
47
+ - EVENT_LOOP=uvloop
48
+ - TIMEOUT=16.0
49
+ before_script : " pip install .[uvloop]"
36
50
37
51
# Install dependencies
38
52
before_install :
39
53
- ./.travis-install-libsodium.sh
40
- - export TIMEOUT=2.0
41
- - >
42
- if [[ "$TRAVIS_PYTHON_VERSION" == "pypy3" ]]; then
43
- ./.travis-fix-pypy3.sh || travis_terminate 1;
44
- source ${HOME}/venv/bin/activate;
45
- which python;
46
- python --version;
47
- which pip;
48
- pip --version;
49
- export TIMEOUT=12.0
50
- fi
51
54
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${HOME}/libsodium/lib
52
55
install :
53
56
- pip install -U setuptools pip
You can’t perform that action at this time.
0 commit comments