forked from lavr/python-emails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (28 loc) · 728 Bytes
/
.travis.yml
File metadata and controls
36 lines (28 loc) · 728 Bytes
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
language: python
sudo: no
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
script: py.test --cov emails
before_install:
- travis_retry pip install coverage coveralls pytest-cov six
install:
- travis_retry pip install -r requirements/tests-$TRAVIS_PYTHON_VERSION.txt
cache:
directories:
- $HOME/.pip-cache/
after_success:
# Report coverage results to coveralls.io
- coveralls
deploy:
provider: pypi
user: lavr
password:
secure: "WuFOsmKW77foHa0Ywv7pwXNvSQ+lHSx/IlYxPTuE7dTj1mNgvXC48NXQONY1ZEDiysryimgfsqumvx6PqLsFmOkG4r9k3gaau0eHE063+/hse0YvbqpnzIWa1FTe4yxreJeEHWSiNyAyo0ERaZVMcnj1ii6paHzuMVuCQ/BwV3k="
on:
tags: true
branch: master
distributions: "sdist bdist_wheel"