forked from casbin/pycasbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·25 lines (25 loc) · 1.07 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
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "pypy3"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m unittest discover -s tests -t tests
after_success:
- coveralls
deploy:
provider: pypi
user: techlee
password:
secure: qoBLYrYCxU3qe9SP3tCdgqVEmqEQAdCFfC/h8ENeY3dD0cyBV/yaitjY92bQxLgialouDUojiyOpvEl4apl4XQSvVhywtIqBaY5w8h1SuRUNMOkCP8LiWQt5NbsVI6Liad9IRviknsiIkW3LTqOrS+zRWmhZ6Yz/wvc+QMFY4JX51EWLPwtFTSbuiG0VtJgN9s7LgX8Q6GvNW0Alp3mfJnVTqk/HCtJuHkQwd1EK5Zr2ePO+KwlLaTpvRrAAcQVEWuHysieriTNgz9GTXvVEoGAuP/meq8DIRGDQmqnMz4vjj7oxg+gaVioUfnhN35ZrTF0wggJaCeytkSjbbDCspIc47/zaK7041ZQO9r0A1eeErkSi1dUo3WH4yO3HWfWxg5HOLN+40CYPStlmC77/jG0vvYBdmdcD8h+cRmY0W426G8xf9aqnYNzI7VP8tVceO9ySVHgeKCdVPcGRht8nHQdsNHFxUijViThtzyhf+RKF1UXbIxlZUuWirwR2+rfGSY6oYdXIb0MUBXxLqwVVIPBrQJOuaMEZG4tAVxaa3K/YiRIN5rvTZp8Ru5YrPsAyGhINg3t2JrPoyU236JIlNKliQHPVvOUftGryD/kvhpDIl+kOKFkNoMCQnolbGMGEx+ZL7g4IBpR+iNkvJNEyV1KProPdGJR5ajUuGEAmdkM=
distributions: "sdist bdist_wheel"
skip_existing: true
on:
tags: true
python: '3.6'