forked from pitthsls/pycounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (41 loc) · 884 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
sudo: false
dist: trusty
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
cache: pip
install:
- pip install .
- pip install tox-travis
- pip install pytest
- pip install httmock
- pip install coverage
- pip install coveralls
- pip install flake8==2.6.2
- pip install flake8-import-order==0.8
- pip install check-manifest
before_script:
- "check-manifest"
- "flake8 pycounter"
script:
- tox
after_success:
- coveralls
- coverage report -m
notifications:
irc: "chat.freenode.net#pycounter"
deploy:
provider: pypi
user: Wooble
password:
secure: hCCjmC5IU/Ch5Ux1WpOwnI5/veifCQ4uTs7z6HL7tQaaFkLArGlTSKuAGTs8P753PlxJwTiLvjYRkjHt0Tzav6GoZ3TkU4/QHnd6JZLhOth9uTj7ENgW3kWJ1zwZU9acLqDub1jqXglJVUWk6Ave1UMkNLFfhSnLW+v4x8m94Ww=
on:
tags: true
python: 3.6
distributions: "sdist bdist_wheel"