2019-06-30 23:39:09 +00:00
|
|
|
language: python
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: "python 3.7 Xenial"
|
|
|
|
dist: xenial
|
|
|
|
python: 3.7
|
|
|
|
- name: "python 3.7 Windows"
|
|
|
|
os: windows
|
|
|
|
language: shell # 'language: python' is an error on Travis CI Windows
|
|
|
|
before_install: choco install python
|
|
|
|
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
|
|
|
|
- name: "python 3.7 MacOs"
|
|
|
|
os: osx
|
|
|
|
language: shell # 'language: python' is an error on Travis CI macOS
|
2019-06-30 23:54:08 +00:00
|
|
|
install: pip install wheel PyMuPDF pytest pdfrw
|
2019-06-30 23:39:09 +00:00
|
|
|
script: pytest test.py
|