-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (38 loc) · 1.43 KB
/
.travis.yml
File metadata and controls
44 lines (38 loc) · 1.43 KB
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
44
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
cache:
directories:
- $HOME/.cache/pip
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- pip install -r test_requirements.txt
# command to run tests, e.g. python setup.py test
before_script:
- export TZ=America/New_York
script:
- make lint
- make test
- make dist
after_success:
- make coverage
- coveralls
deploy:
provider: pypi
user: netuitive
password:
secure: QrivuUGSznm01ZniDcJ51hLIEM9pKkArxhQEljpYCABklqh0IneTyGQn7yQP0x+kaGOjD6RtkxFgfNg8HKCikw/KSVAU9kH07Qu5HVeECTdPf5dx5Y7xG9njzo0M8AuZwrQWLhlH2JUhYTx1P8NVye46SEpSt79Q3zx/TC0dbdLKTbznLN5DjUoYJz++FNQ3+Dh1E8k9McUc2Pjtbq3oMamuFylkDOh+4DEpx17WsRH/IMNAaLCfYHh+TjByBs+QahKPPKiYI3rGx1fr4su9LWq6e5bk8Yi36XVeLBp+CdoqRsTgXsH2OthGqvqpHopchaibenuw9EGx8BaAUCdhanolZ6jH+YeUwCjMW0ypF5WV3Jw4TmOYxpWtxPZ+yJN7MewaNW0HVyuJ75qhHFOWI+xzNTk2fk1dsG4Ed+t9Xfa79eEpTrProtnRUAIDHCp4iT6OYv1js2+rrG7M+f2oKxrFsYf/m5IQjzZDT2NLCf+hKsLdnce1XckklUKM4QbLgcDBY2JOXRkGEhxAgQ9VE78BO/RLZ6bBkv4xu+Rwt5dVPUkniwhQmRTx3GY4uzQAYlFaJ9lh5JV4BIXYWscRf791TSEWH5qfoGTkCEqz8mJ6ExpGzmYo9SbNS/rkEy8VxUHk08luSr1QkpatFHYF0TfrYplBtTKFnMs4PTAUIXg=
on:
tags: true
distributions: sdist bdist_wheel
repo: Netuitive/netuitive-client-python