This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
python-emails/.travis.yml

37 lines
725 B
YAML
Raw Permalink Normal View History

2013-08-14 20:52:22 +02:00
language: python
2013-10-26 14:24:34 +02:00
2015-02-21 21:56:59 +01:00
sudo: no
2013-08-14 20:52:22 +02:00
python:
- "2.6"
- "2.7"
2013-08-17 14:55:55 +02:00
- "3.3"
2014-05-11 21:19:28 +02:00
- "3.4"
2015-04-04 10:37:06 +02:00
- "pypy"
2013-10-26 14:24:34 +02:00
2015-02-21 21:56:59 +01:00
script: py.test --cov emails
before_install:
- travis_retry pip install coverage coveralls pytest-cov
2013-10-26 14:24:34 +02:00
2013-10-26 14:10:57 +02:00
install:
2015-02-21 21:56:59 +01:00
- travis_retry pip install -r requirements/tests-$TRAVIS_PYTHON_VERSION.txt
2013-08-14 20:52:22 +02:00
2013-10-26 14:24:34 +02:00
cache:
directories:
- $HOME/.pip-cache/
2015-02-21 21:56:59 +01:00
after_success:
# Report coverage results to coveralls.io
- coveralls
2015-02-24 23:50:11 +01:00
deploy:
2015-02-21 21:56:59 +01:00
provider: pypi
user: lavr
password:
secure: "WuFOsmKW77foHa0Ywv7pwXNvSQ+lHSx/IlYxPTuE7dTj1mNgvXC48NXQONY1ZEDiysryimgfsqumvx6PqLsFmOkG4r9k3gaau0eHE063+/hse0YvbqpnzIWa1FTe4yxreJeEHWSiNyAyo0ERaZVMcnj1ii6paHzuMVuCQ/BwV3k="
on:
tags: true
2015-02-24 23:50:11 +01:00
branch: master
2015-02-21 21:56:59 +01:00
distributions: "sdist bdist_wheel"