forked from iwanbk/0-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (28 loc) · 832 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
matrix:
include:
- language: python
sudo: true
dist: trusty
python: 3.5
if: type IN (api, cron)
install:
- pip3 install argparse
- curl -s https://install.zerotier.com/ | sudo bash
- pip3 install -r tests/integration_tests/requirements.txt
- ./utils/jumspcale_install.sh ${js9_branch}
- ./utils/zrobot_install.sh ${zrobot_branch}
script:
- bash tests/integration_tests/travis/travis_script.sh
- language: python
sudo: required
dist: trusty
python: 3.5
install:
- pip3 install codecov pytest pytest-cov
- pip3 install -r requirements.txt
- ./utils/jumspcale_install.sh
- ./utils/zrobot_install.sh
script:
- make test
after_success:
- codecov