forked from habnabit/txsocksx
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
42 lines (36 loc) · 908 Bytes
/
.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
language: python
sudo: false
env:
global:
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
matrix:
# earliest and latest supported; last release of every year; 12.1 and 15.0
# for txsocksx.http
- TWISTED=Twisted==10.1
- TWISTED=Twisted==10.2
- TWISTED=Twisted==11.1
- TWISTED=Twisted==12.1
- TWISTED=Twisted==12.3
- TWISTED=Twisted==13.2
- TWISTED=Twisted==14.0
- TWISTED=Twisted==15.0
- TWISTED=Twisted==15.2
- TWISTED=svn+svn://svn.twistedmatrix.com/svn/Twisted/trunk
python:
- 2.6
- 2.7
- pypy
matrix:
allow_failures:
# pypy is a bit sporadic
- python: pypy
cache:
directories:
- ~/.cache/pip
install:
- pip install -U pip
- pip install $TWISTED pyOpenSSL coveralls
- pip install -r requirements.txt
script: coverage run $(which trial) txsocksx
after_success: "coveralls"