-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.travis.yml
45 lines (37 loc) · 863 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
43
44
45
language: python
cache:
directories:
- $HOME/.cache/pip
before_install:
- '([ $TRAVIS_OS_NAME == linux ] && dpkg -s libaugeas0) || (brew update && brew install augeas python3)'
before_script:
- 'if [ $TRAVIS_OS_NAME = osx ] ; then ulimit -n 1024 ; fi'
# container-based infrastructure
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- "pip install certbot"
- "python setup.py install"
script:
- 'python certbot_external_auth/tests/plugin_test.py'
addons:
apt:
sources:
- augeas
packages: # Keep in sync with letsencrypt-auto-source/pieces/bootstrappers/deb_common.sh and Boulder.
- python-dev
- python-virtualenv
- gcc
- libaugeas0
- libssl-dev
- libffi-dev
- ca-certificates
- nginx-light
- openssl
- apache2
- libapache2-mod-wsgi
- libapache2-mod-macro