Skip to content

Commit

Permalink
Fixed Travis CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed Feb 9, 2021
1 parent 8ec72d0 commit b78a7bc
Showing 1 changed file with 26 additions and 16 deletions.
42 changes: 26 additions & 16 deletions .travis.yml
Expand Up @@ -46,31 +46,41 @@ jobs:
- python: nightly
arch: arm64
- os: osx
language: objective-c
env: PYENV_VERSION=2.7.18
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=2.7.18
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
language: objective-c
env: PYENV_VERSION=3.6.8
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.6.8
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
osx_image: xcode11.3
language: objective-c
env: PYENV_VERSION=3.7.6
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.7.6
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
language: objective-c
osx_image: xcode11.3
env: PYENV_VERSION=3.8.1
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.8.1
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
- os: osx
osx_image: xcode11.3
language: objective-c
env: PYENV_VERSION=3.9.0
language: shell
env:
- PATH=/Users/travis/.pyenv/shims:$PATH
- PYENV_VERSION=3.9.0
before_install: travis_wait brew upgrade pyenv && pyenv install $PYENV_VERSION
cache: pip
install:
- python -m pip install --upgrade pip
- pip install pytest
- pip install pytest-cov
- pip install coveralls
- pip install markdown2
- pip install six
- pip install .
- pip install pytest pytest-cov coveralls markdown2 six .
script: pytest --cov=codext --cov-report=term-missing tests
after_success: coveralls

0 comments on commit b78a7bc

Please sign in to comment.