forked from noahmorrison/chevron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (44 loc) · 1.1 KB
/
.travis.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
sudo: false
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- pypy
matrix:
include:
- python: 3.5
env:
- TOXENV=flake8
install:
- pip install coveralls
- pip install tox-travis
script:
- tox
after_success:
- coveralls
deploy:
- provider: pypi
user: noahmorrison
password:
secure: GK+PXWWCczHMQAptgAA6umma0kP+fPsCktHzDnpb4Pa7RZBjxjS1mbRtwSfMm8gWcRYkqjO0la/t3TUP3qjfa+x5JmIwy2YTveBKmSjTxLAb9n7fCWZEGu9GWgGvfsmg2Hhi6NYUp9U7ggtoBXQ4AHgmnPyDCL2TQK32PKj5soM=
distributions: sdist bdist_wheel
skip_upload_docs: true
on:
tags: true
branch: master
condition: $TRAVIS_PYTHON_VERSION = "3.5"
- provider: pypi
server: https://testpypi.python.org/pypi
user: noahmorrison
password:
secure: GK+PXWWCczHMQAptgAA6umma0kP+fPsCktHzDnpb4Pa7RZBjxjS1mbRtwSfMm8gWcRYkqjO0la/t3TUP3qjfa+x5JmIwy2YTveBKmSjTxLAb9n7fCWZEGu9GWgGvfsmg2Hhi6NYUp9U7ggtoBXQ4AHgmnPyDCL2TQK32PKj5soM=
distributions: sdist bdist_wheel
skip_upload_docs: true
on:
all_branches: true
condition: $TRAVIS_PYTHON_VERSION = "3.5"