-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (28 loc) · 772 Bytes
/
.travis.yml
File metadata and controls
32 lines (28 loc) · 772 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
sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
# Not currently working in travisci.org:
#- "pypy3"
install:
- pip install -r dev_requirements.txt
script:
- check-manifest
- nosetests --rednose --with-coverage --cover-package=transip
- pylint --rcfile=.pylintrc transip
# Deploy a new release to PyPi for every new tag on the 'master' branch on the
# repository 'benkonrath/transip-api'.
deploy:
provider: pypi
user: roaldnefs
password:
secure: "ahpUlrwDpSzVETim897QkLZNGdK3MUZJWghAd3U9idPaIo/Ax21jgPJ0emRQxBOEmK+ztcxVkm5GKU5IZQYbBbTZeppi+xV0a3MeCwmMIrwDZCYxc8uZPjbqmqLjaO3dd5lNcpOXkDXXhr5LGtUIsRKhI9oLb6l+ZfbmuF4niBw="
on:
repo: benkonrath/transip-api
tags: true
branch: master
python: 3.6