-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (33 loc) · 711 Bytes
/
Copy path.travis.yml
File metadata and controls
38 lines (33 loc) · 711 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
37
38
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- pip install tox-travis
- pip install codecov
script: tox
matrix:
fast_finish: true
include:
- python: 3.6
env: TOXENV=flake8
- python: 3.6
env: TOXENV=docs
after_success:
- codecov
deploy:
provider: pypi
user: mhubig
password:
secure: V3FcCr361MDnurFXx02+oZVLOBEJaPnmhK0Pm5jnh9S2RkH5b75uNkqwbx5oWB9SrEpPjy5A+wnTAntSGjfeDt1CxXBLZmcxHXHPfoiiiPAyVzI7OVL9K69G9ff1LU4lYRDEWnSKnnYDcviBwdXSZr4QRyefReeIDF6I9CAbO2c=
on:
tags: true
branch: master
repo: mhubig/implib2
python: 3.6
condition: $TOXENV != flake8 && $TOXENV != docs
distributions: "sdist bdist_wheel"