Created
July 16, 2019 14:40
-
-
Save shaypal5/bbc5b1c46571b8526b130f657ae84813 to your computer and use it in GitHub Desktop.
Testing Python 3.6.5 on macOS 10.13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrix: | |
include: | |
- name: "Python 3.6.5 on macOS 10.13" | |
os: osx | |
osx_image: xcode9.4 # Python 3.6.5 running on macOS 10.13 | |
language: shell # 'language: python' is an error on Travis CI macOS | |
before_install: | |
- python3 --version | |
- pip3 install -U pip | |
- pip3 install -U pytest | |
- pip3 install codecov | |
script: python3 -m pytest | |
after_success: python 3 -m codecov |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment