forked from wolph/python-progressbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (33 loc) · 712 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 712 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
dist: xenial
sudo: false
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- pypy
install:
- pip install -U .
- pip install -U -r tests/requirements.txt
before_script: flake8 progressbar tests examples.py
script:
- py.test
- python examples.py
after_success:
- coveralls
- pip install codecov
- codecov
before_deploy: "python setup.py sdist bdist_wheel"
deploy:
provider: releases
api_key:
secure: DmqlCoHxPh5465T5DQgdFE7Peqy7MVF034n7t/hpV2Lf4LH9fHUo2r1dpICpBIxRuDNCXtM3PJLk59OMqCchpcAlC7VkH6dTOLpigk/IXYtlJVr3cXQUEC0gmPuFsrZ/fpWUR0PBfUD/fBA0RW64xFZ6ksfc+76tdQrKj1appz0=
file: dist/*
file_glob: true
skip_cleanup: true
on:
tags: true
repo: WoLpH/python-progressbar