-
Notifications
You must be signed in to change notification settings - Fork 18
/
.travis.yml
49 lines (41 loc) · 891 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
dist: xenial
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
cache: pip
install:
- pip install .
- pip install tox-travis
- pip install coveralls
script:
- tox
after_success:
- coveralls
- coverage report -m
notifications:
irc: "irc.libera.chat#pycounter"
jobs:
include:
- python: 3.7
env: TOXENV=flake8
- python: 3.7
env: TOXENV=manifest
- python: 3.7
env: TOXENV=lint
- python: 3.7
env: TOXENV=docs
- python: "pypy3.6-7.0.0"
env: TOXENV=pypy3_linux
deploy:
provider: pypi
user: Wooble
password:
secure: hCCjmC5IU/Ch5Ux1WpOwnI5/veifCQ4uTs7z6HL7tQaaFkLArGlTSKuAGTs8P753PlxJwTiLvjYRkjHt0Tzav6GoZ3TkU4/QHnd6JZLhOth9uTj7ENgW3kWJ1zwZU9acLqDub1jqXglJVUWk6Ave1UMkNLFfhSnLW+v4x8m94Ww=
on:
condition: "! $TOXENV =~ ^flake8|lint|manifest|docs$"
tags: true
python: 3.6
distributions: "sdist bdist_wheel"