-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshippable.yml
36 lines (30 loc) · 958 Bytes
/
shippable.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
#set your language below
language: python
#set language version. This is only required if you use the default Shippable image for your build
python:
- 2.7
#specify which services you need. This is only valid if you use the default Shippable image for your build
services:
env:
- TEST_TYPE=unit
- TEST_TYPE=functional
matrix:
build:
#commands in this section run on your build machine and not inside your CI container.
pre_ci:
pre_ci_boot:
image_name:
image_tag:
pull:
options:
#commands in this section run inside your CI container. In addition, any commands such as ls, in this section can be used to skip default processing for CI.
ci:
- pip install -r development.txt
- pip install coveralls
- make $TEST_TYPE
post_ci:
on_success:
on_failure:
cache: true
#commands in this section run on your build machine and not inside your CI container.
push: