mirror of
https://github.com/certbot/certbot.git
synced 2026-08-06 13:32:04 +02:00
26 lines
702 B
YAML
26 lines
702 B
YAML
language: python
|
|
|
|
# please keep this in sync with docs/using.rst (Ubuntu section, apt-get)
|
|
before_install: >
|
|
travis_retry sudo apt-get install python python-setuptools
|
|
python-virtualenv python-dev gcc swig dialog libaugeas0 libssl-dev
|
|
libffi-dev ca-certificates
|
|
|
|
install: "travis_retry pip install tox coveralls"
|
|
script: "travis_retry tox"
|
|
|
|
after_success: '[ "$TOXENV" == "cover" ] && coveralls'
|
|
|
|
# using separate envs with different TOXENVs creates 4x1 Travis build
|
|
# matrix, which allows us to clearly distinguish which component under
|
|
# test has failed
|
|
env:
|
|
- TOXENV=py26
|
|
- TOXENV=py27
|
|
- TOXENV=lint
|
|
- TOXENV=cover
|
|
|
|
notifications:
|
|
email: false
|
|
irc: "chat.freenode.net#letsencrypt"
|