forked from SekouD/potranslator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
43 lines (38 loc) · 1.62 KB
/
.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
# Config file for automatic testing at travis-ci.org
language: python
python:
- 3.7-dev
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
# PyPy versions
- pypy2.7
- pypy3.5
matrix:
allow_failures:
- python: pypy2.7
- python: pypy3.5
- python: 3.3
- python: 3.5
- python: 3.7-dev
# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U tox-travis
# Command to run tests, e.g. python setup.py test
script: tox
# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password
# Commented out auto-deployment. Now deployment is manual to allow for signed distribution of binaries.
#deploy:
# provider: pypi
# distributions: sdist bdist_wheel
# user: SekouD
# password:
# secure: "P5kfy3dLA9djUU6nPCx1ldanbtpB2GiclEHw5wX4MKLpianyqm5sEaP7+q1Ht6Q0xPWIAoxyCie4NY/eAt0gpJsjbonvwrcGhK1yTAuuXkAvQawrkWzlGEisQUpRroxU2pahwW1KoxxMkYyK27hqR8aU6JP9nXL6rBI6hnT6WTiyPTQnJ2I7TeL2MqFR7EKS6LPPm5F6EgtO4cYYEPPJk3LcDrWteLSQFesDXHYxdugwrfcGR6HmBWR06r0Tm36dJ4Qf/Jt3ogG7UkxWGN0AFnAUsvAxrsAB8mzgs4NZTIXRQqFzOKpTYkUJQArSZNvV4SsTKtYgeLoaM2SijJXJT3WqJDUWZ/b0OTHBbE1OLRr0b+fIcRUZwaEYKyH8FBjvY2bCu09NrpB6bFUkCJJ5JgzHGyXPF/rHvsJtjiFVoDWITAapjy4xTudm/nRfKOWLD/ft15Hv09j4/jynaiph8MAvD7TDKvn9/MtaDfuOAol5jELiyi6C0sCjxzdMlUiZ2cvYF4CvM8ES0zsqzeWiYxR/3d9tBadMwV4KezCzwEzWNErQSaqWr9JsfWnMD7uXMgOE8e6FIxnRUbItTsQT6PMRBssT5FWsCb8Wl+2PsFedlbn+Yj06WJL4npH9+5YRsMXUI2XvGagqeSu5mMoxXvKjbrryWiwNeUVc1xdtgt4="
# on:
# tags: true
# repo: SekouD/potranslator
# python: 3.6