Skip to content

Instantly share code, notes, and snippets.

@shaypal5
Created July 16, 2019 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaypal5/c944304b9af67825bebec3916010a277 to your computer and use it in GitHub Desktop.
Save shaypal5/c944304b9af67825bebec3916010a277 to your computer and use it in GitHub Desktop.
Travis: Python 2.7.14 on macOS 10.13
matrix:
include:
- name: "Python 2.7.14 on macOS 10.13"
os: osx
osx_image: xcode9.3 # Python 2.7.14_2 running on macOS 10.13
language: shell # 'language: python' errors on Travis CI macOS
before_install:
- python --version
- pip install pytest --user
- pip install codecov --user
install: pip install ".[test]" --user
script: python -m pytest # pytest command won't be found
after_success: python -m codecov # codecov command won't be found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment