forked from ooni/probe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (42 loc) · 1.08 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
language: python
env:
- TWISTED=Twisted==12.2
- TWISTED=Twisted==12.3
- TWISTED=Twisted==13.0
- TWISTED=Twisted==13.1
- TWISTED=Twisted==13.2
- TWISTED=Twisted==14.0
- TWISTED=Twisted==14.0.1
- TWISTED=Twisted==14.0.2
- TWISTED=Twisted==15.0.0
- TWISTED=Twisted==15.1.0
- TWISTED=Twisted==15.2.0
- TWISTED=Twisted==15.2.1
- TWISTED=Twisted==15.3.0
- TWISTED=Twisted==15.4.0
- TWISTED=Twisted
before_install:
- sudo apt-get install tor libpcap-dev libgeoip-dev libdumbnet-dev libffi-dev
libssl-dev
- sudo /etc/init.d/tor start
python:
- "2.7"
# command to install dependencies
# the first is for testing pip and the second for setuptools
install:
- pip install $TWISTED pyOpenSSL coveralls
- pip install pyrex-real
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
- sudo $(which coverage) run $(which trial) ooni
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.oftc.net#ooni"
on_success: change
on_failure: always