Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis: Use the default osx image. #76

Merged
merged 3 commits into from
May 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ matrix:
sudo: false
python: 3.5
- os: osx
osx_image: xcode7.3
language: generic
env: PIP=pip3 MYPYTHON=python3
env:
Expand Down Expand Up @@ -63,7 +62,7 @@ install:
$PIP install setuptools
$PIP install ply pep8 mako
if [ "$MYPYTHON" != "jython" ]; then
$PIP install pytest pytest-cov codecov
$PIP install --upgrade pytest pytest-cov codecov
fi

script:
Expand All @@ -75,7 +74,7 @@ script:
if [ "$MYPYTHON" == "jython" ]; then
py.test
else
py.test --cov=pyoracc --cov-report xml --cov-report html --runslow
pytest --cov=pyoracc --runslow
fi

- pep8 --exclude=parsetab.py .
Expand Down