We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dae2ae commit b03cda5Copy full SHA for b03cda5
1 file changed
.travis.yml
@@ -11,6 +11,15 @@ python:
11
- "3.3"
12
- "3.4"
13
14
-install: pip install tox
+install:
15
+ - pip install tox
16
+ - # The OS X VM doesn't have any Python support at all
17
+ # See https://github.com/travis-ci/travis-ci/issues/2312
18
+ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
19
+ brew update
20
+ brew install python3
21
+ virtualenv -p python3 $HOME/osx-py3
22
+ . $HOME/osx-py3/bin/activate
23
+ fi
24
25
script: tox
0 commit comments