We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f207b commit 09948b0Copy full SHA for 09948b0
.travis-osx
@@ -0,0 +1,6 @@
1
+# Perform the manual steps on osx to install python3 and activate an environment
2
+brew update
3
+brew install python3
4
+rm /usr/local/bin/python
5
+ln -s python3 /usr/local/bin/python
6
+ln -fs pip3 /usr/local/bin/pip
.travis.yml
@@ -16,6 +16,11 @@ matrix:
16
- python: 3.7-dev
17
- python: nightly
18
- python: pypy
19
+ include:
20
+ - os: osx
21
+ language: generic
22
cache: python
23
+before_install:
24
+- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source .travis-osx; fi
25
install: pip install tox
26
script: tox -e py
0 commit comments