From 68db923bcfdf4871330e2e4dcbf002762e4c6642 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 1 Jul 2019 09:48:40 +0200 Subject: [PATCH] .travis.yml: don't use --with-tcl-tk --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70d400a..13f57d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,16 +16,17 @@ matrix: directories: - "$HOME/Library/Caches/Homebrew" - "$HOME/Library/Caches/pip" + addons: + homebrew: + update: true + packages: python3 before_install: - - brew update - - brew install tcl-tk - - brew install python3 --with-tcl-tk - 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 script: - - python --version - python3 --version - - python -c 'import tkinter' + - python3 -c 'import tkinter' + - python3 -m pytest test.py - pytest test.py