forked from josch/img2pdf
.travis.yml: install imagemagick
This commit is contained in:
parent
bfd822b74e
commit
1d0e4c5272
1 changed files with 9 additions and 3 deletions
12
.travis.yml
12
.travis.yml
|
@ -4,10 +4,14 @@ matrix:
|
||||||
- name: "python 3.7 Xenial"
|
- name: "python 3.7 Xenial"
|
||||||
dist: xenial
|
dist: xenial
|
||||||
python: 3.7
|
python: 3.7
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- imagemagick
|
||||||
- name: "python 3.8 Windows"
|
- name: "python 3.8 Windows"
|
||||||
os: windows
|
os: windows
|
||||||
language: shell # 'language: python' is an error on Travis CI Windows
|
language: shell # 'language: python' is an error on Travis CI Windows
|
||||||
before_install: choco install python
|
before_install: choco install python imagemagick
|
||||||
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
|
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
|
||||||
- name: "python 3.7 MacOs"
|
- name: "python 3.7 MacOs"
|
||||||
os: osx
|
os: osx
|
||||||
|
@ -19,7 +23,9 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
homebrew:
|
homebrew:
|
||||||
#update: true
|
#update: true
|
||||||
packages: python3
|
packages:
|
||||||
|
- python3
|
||||||
|
- imagemagick
|
||||||
before_install:
|
before_install:
|
||||||
- python3 -m pip install --upgrade virtualenv
|
- python3 -m pip install --upgrade virtualenv
|
||||||
- virtualenv -p python3 --system-site-packages "$HOME/venv"
|
- virtualenv -p python3 --system-site-packages "$HOME/venv"
|
||||||
|
@ -27,4 +33,4 @@ matrix:
|
||||||
install: pip install tox
|
install: pip install tox
|
||||||
script:
|
script:
|
||||||
- python --version
|
- python --version
|
||||||
- tox
|
- python -m tox
|
||||||
|
|
Loading…
Reference in a new issue