-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (28 loc) · 742 Bytes
/
Copy path.travis.yml
File metadata and controls
37 lines (28 loc) · 742 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.6"
- "2.7"
- "3.3"
- "3.4"
- "3.6"
script: nosetests --with-coverage --cover-package=flask_emails
before_install:
- travis_retry pip install coverage coveralls nose pytest mock
install:
- travis_retry pip install -r requirements.txt
cache:
directories:
- $HOME/.pip-cache/
after_success:
# Report coverage results to coveralls.io
- coveralls
deploy:
provider: pypi
user: lavr
password:
secure: G4V07eOMlXoAs1cbXD2Hm4kY5s9XBq1LgdUdSWx84P9ecBM18dzP/LPuSFF3q3CXVn9Xy0PiQcdEUMSLixZEJ51krkoMpahp3dJHSuGOMNCefmJeeBmZGN8ZmBbOYPlNpzFyZIRqP2BlLGLgQb902ShsXZmPevBv1LQl+4ICjvA=
on:
tags: true
branch: master
distributions: "sdist bdist_wheel"