forked from zmei-framework/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (28 loc) · 1.26 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
language: python
python:
# - "2.7"
# - "3.4"
# - "3.5"
- "3.6"
# PyPy versions
# - "pypy3.5"
install:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- pip install -r requirements-dev.txt
- pip install .
before_script:
- ./cc-test-reporter before-build
script:
- pytest --cov=zmei_generator/
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
after_success:
- codecov
deploy:
provider: pypi
user: ribozz
password:
secure: UOvyGyKR8aJnQ9w53kdpe96kAkelO7m/SEwjnyGvPOMxjhthsJ4MlxiQONMSwJZSKIzx0hMz2FbeqsBkbtjx3d0ma6QZgSIw5lVmZT/ubpmuZFs4cSuOXsSVTU/rfxV1oiin6RTXJucvXJ6u3Gqe3CsMJm3YHzQuwUvnIwIQ0RMJeY4OgFnDjwNu3f3sjdpZirtXzXOm1qLB1FxLumOwdYiKTGMD3GsiMkDJmvaaJmkYXRNO8sTbCkt0SDrsgMMrEhJ7iWG2nQDTCuzPNFARmwRw8evF7hlwD8pAVZUfeYUMKPGqGauy6Hega6CyH6yCxmOIUYaJhvTUI04JJJ5VcJc1F768mrk41nfdi72VywX/cFzXdNgWdInx34WWowf/D/AhCiUZK4ti3x7fv/zKKP32ZqH60+t4B4qMMPhycNdfafWI95FKPZl3righVUpbmRaO7Tjcsjflf04lUwx+vplvIWrLOfX0yz0Fu9U8NhAOsJssy+Dv2+8QK4/aDIsrtKxwq8OYpSSCOxemsw73UF3pw1SbAGL4v4AZcgA8/CQYih/lcDYGgBqtylynv5eSm/d+sTYvMb5Ak/SxOrnHfokaxaZqRufqLxOaIkO/WHudPDmqAyq+fWpCYpWCZmM9PtSgIKf0ooyrSyHDjLK1v+ffP42xW/R1NkB+FZwZQCs=
on:
tags: true