-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (27 loc) · 1.24 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
language: python
python:
- "3.6"
before_install:
- sudo apt-get update
- sudo apt-get install pandoc -y
# command to install dependencies
install:
- pip install pipenv==2018.10.13
- pipenv run make install-dev
# command to run tests
script:
- pipenv run make lint
- pipenv run make test-linetrace
after_success:
- export CODECOV_TOKEN="211067ca-0d98-42d6-bd63-bf01171cc92f"
- bash <(curl -s https://codecov.io/bash)
deploy:
provider: pypi
user: stegben
password:
secure: eihswW4KNxCa9Tn/iPcYE6mdlLHwMVWG+2Dll2WhuCj2+ZBL+zI4UHoGmSWqevwal39iBqb+9gwY8tALzCG1XDIYx2nXjz7dtvNlAyWTMg5IgyvxhqxARcrhiWsO9dqi/mUzdGdUthiIztlMF3torYqQDO3mZ67oGCZZSf+o5+KXJX49WnkbTOSDlDNG6ndsmJaAQGq8uxDIiIMzbD8tbIx2AM/eyd0s8KGbRaotQxViS7uPpqofUJql7QdWRnYHmp12joOx0P9g7EKShbPDDYikDGfgpXoAZMgHErIOIPP7ed0+vYp5sVP23y34pmyQFjuXn63l1u9+dicd2m3xVAAuY775evt2EX3zOgfjQmNVo8jKBWWaPbxznKiXT52DAQcB4Z/q0WgoA0q1RWnwqhzUvV1VQzJ57v4LnOuvba6bDXRQvKgNZIA7lTpeDwvxPYtIRtL2bUlyVoDUeNREBniZzSyPwXrehDasUurD1kyHg8+4uM/E3I2T6nrCQsPojZ9i6GP3JEiaZmyuBbCFrNxNUGIxeysaaE5vYpQxxZE6HPozDGmnUjJThA5mWhwBZ4d1t7PFK3RQl/JRo7GRSloEZi7V1gkzVcGKsU4njRWC1vORk9ue+FSqdarlgMCcbxr/A+b06QAi0EGbXkQP4m3TdzaNClOn7xOtn7OXXxE=
distributions: sdist
skip_cleanup: true
on:
tags: true
python: 3.6