forked from pitthsls/pycounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
57 lines (47 loc) · 969 Bytes
/
.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
51
52
53
54
55
56
57
sudo: false
dist: trusty
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
cache: pip
install:
- pip install .
- pip install tox-travis
- pip install coverage
- pip install coveralls
script:
- tox
after_success:
- coveralls
- coverage report -m
notifications:
irc: "chat.freenode.net#pycounter"
jobs:
include:
- python: 3.6
env: TOXENV=flake8
- python: 2.7
env: TOXENV=flake8_py2
- python: 3.6
env: TOXENV=manifest
- python: 3.6
env: TOXENV=lint
matrix:
allow_failures:
- python: 3.6
env: TOXENV=lint
deploy:
provider: pypi
user: Wooble
password:
secure: hCCjmC5IU/Ch5Ux1WpOwnI5/veifCQ4uTs7z6HL7tQaaFkLArGlTSKuAGTs8P753PlxJwTiLvjYRkjHt0Tzav6GoZ3TkU4/QHnd6JZLhOth9uTj7ENgW3kWJ1zwZU9acLqDub1jqXglJVUWk6Ave1UMkNLFfhSnLW+v4x8m94Ww=
on:
condition: "! $TOXENV =~ ^flake8|lint|manifest$"
tags: true
python: 3.6
distributions: "sdist bdist_wheel"