Configuration
in .travis.yml
language: python
# 多個 env 要寫在同一行
env:
- DPS_ENV=test OTHER_ENV=whatever
- DPS_ENV=development OTHER_ENV=whatever
python:
- "2.7"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libxml2-dev libxslt1-dev
install:
- pip install -r requirements_test.txt --use-mirrors
script:
- coverage run --source=haul setup.py test
notifications:
email:
- [email protected]
after_success:
- coveralls
要注意的是多個 environment variables 要寫在同一行
否則會被當成多個環境
每個環境都會跑一次 CI
ref:
http://docs.travis-ci.com/user/ci-environment/
http://docs.travis-ci.com/user/build-configuration/
http://docs.travis-ci.com/user/languages/python/
http://docs.travis-ci.com/user/database-setup/
in .coveralls.yml
如果是 public repo 的話,不需要特別設定什麼
ref:
https://coveralls.io/docs/python
https://github.com/coagulant/coveralls-python