forked from josch/plakativ
.travis.yml: test macos support
This commit is contained in:
parent
970ebb6659
commit
dc717a23ca
1 changed files with 12 additions and 0 deletions
12
.travis.yml
12
.travis.yml
|
@ -12,5 +12,17 @@ matrix:
|
||||||
- name: "python 3.7 MacOs"
|
- name: "python 3.7 MacOs"
|
||||||
os: osx
|
os: osx
|
||||||
language: shell # 'language: python' is an error on Travis CI macOS
|
language: shell # 'language: python' is an error on Travis CI macOS
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- "$HOME/Library/Caches/Homebrew"
|
||||||
|
- "$HOME/Library/Caches/pip"
|
||||||
|
addons:
|
||||||
|
homebrew:
|
||||||
|
update: true
|
||||||
|
packages: python3
|
||||||
|
before_install:
|
||||||
|
- python3 -m pip install --upgrade virtualenv
|
||||||
|
- virtualenv -p python3 --system-site-packages "$HOME/venv"
|
||||||
|
- source "$HOME/venv/bin/activate"
|
||||||
install: pip install wheel PyMuPDF pytest pdfrw
|
install: pip install wheel PyMuPDF pytest pdfrw
|
||||||
script: pytest test.py
|
script: pytest test.py
|
||||||
|
|
Loading…
Reference in a new issue