-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (42 loc) · 924 Bytes
/
.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
language: python
sudo: false
python:
- 3.4
- 3.5
- 3.6
cache:
directories:
- $HOME/.cache/pip
fast_finish: true
services:
- docker
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coverage
- travis_retry pip install coveralls
script:
- nosetests --with-coverage --cover-package=.
- pylint --version
- pylint brewery
- pylint dsp
- pylint measurement
- pylint testing
after_success: coveralls
notifications:
email: false
slack: joulia:WNFyeuBeiJJAGjU6Gwj9rPnX
deploy:
- provider: script
script: python register_update.py
on:
branch: master
# Doesn't matter which python version. This just makes sure we deploy only
# once.
python: 3.6
- provider: script
script: "./deploy_docker.sh"
on:
branch: master
# Doesn't matter which python version. This just makes sure we deploy only
# once.
python: 3.6