File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -43,20 +43,23 @@ jobs:
4343 python : ' 3.6'
4444 - env : TOXENV=py37
4545 - &test-macos
46- language : generic
4746 os : osx
48- osx_image : xcode9.4
49- sudo : required
47+ osx_image : xcode10.1
48+ language : generic
5049 install :
5150 - python -m pip install --pre tox
51+ before_install :
52+ - python -V
53+ - test $(python -c 'import sys; print("%d%d" % sys.version_info[0:2])') = 27
5254 env : TOXENV=py27-xdist
5355 - << : *test-macos
5456 env : TOXENV=py37-xdist
5557 before_install :
56- - brew update
57- - brew upgrade python
58- - brew unlink python
59- - brew link python
58+ - which python3
59+ - python3 -V
60+ - ln -sfn "$(which python3)" /usr/local/bin/python
61+ - python -V
62+ - test $(python -c 'import sys; print("%d%d" % sys.version_info[0:2])') = 37
6063
6164 # Jobs only run via Travis cron jobs (currently daily).
6265 - env : TOXENV=py38-xdist
You can’t perform that action at this time.
0 commit comments