forked from ForensicArtifacts/artifacts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
102 lines (102 loc) · 2.31 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
matrix:
include:
- env: TARGET="pylint"
os: linux
dist: trusty
sudo: required
group: edge
language: python
python: 2.7
virtualenv:
system_site_packages: true
- env: TARGET="linux-python27"
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 2.7
virtualenv:
system_site_packages: true
- env: TARGET="linux-python35"
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 3.5
virtualenv:
system_site_packages: true
- env: [TARGET="linux-python27-tox", TOXENV="py27"]
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 2.7
virtualenv:
system_site_packages: false
- env: [TARGET="linux-python34-tox", TOXENV="py34"]
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 3.4
virtualenv:
system_site_packages: false
- env: [TARGET="linux-python35-tox", TOXENV="py35"]
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 3.5
virtualenv:
system_site_packages: false
- env: [TARGET="linux-python36-tox", TOXENV="py36"]
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 3.6
virtualenv:
system_site_packages: false
- env: [TARGET="linux-python37-tox", TOXENV="py37"]
os: linux
dist: xenial
sudo: required
group: edge
language: python
python: 3.7
virtualenv:
system_site_packages: false
- env: [TARGET="macos-python27", PYTHONPATH="/Library/Python/2.7/site-packages/"]
os: osx
osx_image: xcode9.2
language: generic
- env: TARGET="trusty-python27"
os: linux
dist: trusty
sudo: required
group: edge
language: python
python: 2.7
virtualenv:
system_site_packages: true
- env: TARGET="trusty-python34"
os: linux
dist: trusty
sudo: required
group: edge
language: python
python: 3.4
virtualenv:
system_site_packages: true
install:
- ./config/travis/install.sh
script:
- ./config/travis/run_with_timeout.sh 30 ./config/travis/runtests.sh
after_success:
- if test ${TARGET} = "linux-python27"; then curl -o codecov.sh -s https://codecov.io/bash && /bin/bash ./codecov.sh; fi