From 1d0e4c52727e7738292fea7c446a3ce6d5eb1206 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 3 Aug 2020 14:13:45 +0200 Subject: [PATCH] .travis.yml: install imagemagick --- .travis.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9e3b048..2367fbb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,14 @@ matrix: - name: "python 3.7 Xenial" dist: xenial python: 3.7 + addons: + apt: + packages: + - imagemagick - name: "python 3.8 Windows" os: 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 - name: "python 3.7 MacOs" os: osx @@ -19,7 +23,9 @@ matrix: addons: homebrew: #update: true - packages: python3 + packages: + - python3 + - imagemagick before_install: - python3 -m pip install --upgrade virtualenv - virtualenv -p python3 --system-site-packages "$HOME/venv" @@ -27,4 +33,4 @@ matrix: install: pip install tox script: - python --version - - tox + - python -m tox