-
Notifications
You must be signed in to change notification settings - Fork 82
/
.travis.yml
63 lines (62 loc) · 1.74 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
language: python
jobs:
include:
- language: python
python: "3.8"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test3/test.sh
- language: python
python: "3.7"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test3/test.sh
- language: python
python: "3.6"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test3/test.sh
- language: python
python: "3.5"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test3/test.sh
- language: python
python: "2.7"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test2/test.sh
- language: python
dist: trusty
python: "2.6"
before_install:
- "sudo apt-get install -y --no-install-recommends socat"
script:
- ./test2/test.sh
- name: 'test python3 on macOS'
os: osx
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
language: shell # 'language: python' is an error on Travis CI macOS
addons:
homebrew:
packages:
- socat
script:
- ./test3/test.sh
- name: 'test python2.7 on macOS'
os: osx
osx_image: xcode10.1 # Python 2.7.15
language: shell # 'language: python' is an error on Travis CI macOS
addons:
homebrew:
packages:
- socat
before_install:
- "env HOMEBREW_NO_AUTO_UPDATE=1 /usr/local/bin/brew install socat"
script:
- ./test2/test.sh