File tree 2 files changed +15
-4
lines changed
2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 30
30
# need to explictly define each builder for test due to different os types
31
31
include :
32
32
- stage : test
33
- env : DISTRO=debian:stable PYTHON="3" # 3.4, not 3.5
33
+ env : DISTRO=debian:stable PYTHON="3" # 3.7
34
34
35
35
- stage : test
36
36
env : DISTRO=debian:stable PYTHON="3" KRB5_VER="heimdal"
42
42
- stage : test
43
43
env : DISTRO=fedora:latest PYTHON="3" FLAKE="yes"
44
44
45
+ # Travis defaults to 10.13 (i.e., not latest), so specify osx_image
45
46
- &osx_test
46
47
stage : test
47
48
env : PYTHON="3" KRB5_VER="heimdal" PYENV="3.6.3"
@@ -51,10 +52,13 @@ jobs:
51
52
52
53
- &win_test
53
54
stage : test
54
- env : PYTHON="3" PYENV="3.7.3 "
55
+ env : PYTHON="3" PYENV="3.8.1 "
55
56
os : windows
56
57
language : sh # Windows not supported yet
57
58
59
+ - << : *win_test
60
+ env : PYTHON="3" PYENV="3.7.3"
61
+
58
62
- << : *win_test
59
63
env : PYTHON="3" PYENV="3.6.8"
60
64
@@ -122,10 +126,16 @@ jobs:
122
126
- ./.travis/deploy-win.sh
123
127
env :
124
128
- PYTHON="3"
125
- - PYENV="3.7.3 "
129
+ - PYENV="3.8.1 "
126
130
language : sh # Travis doesn't support python here
127
131
132
+ - << : *win_deploy
133
+ env :
134
+ - PYTHON="3"
135
+ - PYENV="3.7.3"
136
+
128
137
- << : *win_deploy
129
138
env :
130
139
- PYTHON="3"
131
140
- PYENV="3.6.8"
141
+
Original file line number Diff line number Diff line change @@ -67,7 +67,8 @@ setup::rh::install() {
67
67
}
68
68
69
69
setup::macos::install () {
70
- # install Python from pyenv so we know what version is being used
70
+ # Install Python from pyenv so we know what version is being used. This
71
+ # doesn't work for newer macos.
71
72
pyenv install $PYENV
72
73
pyenv global $PYENV
73
74
virtualenv -p $( pyenv which python) .venv
You can’t perform that action at this time.
0 commit comments