-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
41 lines (34 loc) · 907 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
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: xeor
password:
secure: !!binary |
QThLY2lIQnhLYktXYWdOZjBYcktpSXNHcmRCV2RPZU8wVUcrSXFXUVpPK2NUV2pZdHJJSS9OYmxT
b0p0d21TekFUTS9SYzNsRktKcGd3ZkQ2RTZGYTd2RmRHbTJyVWV6NTA5VVoyTC9jRzRpbDZSNUha
M051bTN4WFJOZ0RscDUzZkkxeHBSakI1TXZ6aDI3NXNqUHVzSmVXNjVCeERMbGYrSGZmUkUyUWRV
PQ==
true:
python: 3.6
repo: xeor/taggo
tags: true
after_deploy:
- >-
curl \
-H "Content-Type: application/json" \
--data '{"build": true}' \
-X POST https://registry.hub.docker.com/u/xeor/taggo/trigger/${DOCKER_BUILD_TRIGGER_TOKEN}/
install:
- pip install -U tox-travis coveralls
- pip install -r requirements_dev.txt
language: python
python:
- 3.6
env:
- TOXENV=py36
script:
- tox
- coverage run --source taggo -m pytest
- coverage report -m
after_success:
- coveralls