1
0
Fork 0
forked from josch/plakativ

.travis.yml: install python3 with tk

This commit is contained in:
Johannes 'josch' Schauer 2019-07-01 09:26:36 +02:00
parent 224e565882
commit e5cc5d002f
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -16,13 +16,16 @@ matrix:
directories: directories:
- "$HOME/Library/Caches/Homebrew" - "$HOME/Library/Caches/Homebrew"
- "$HOME/Library/Caches/pip" - "$HOME/Library/Caches/pip"
addons:
homebrew:
update: true
packages: python3
before_install: before_install:
- brew tap homebrew/dupes
- brew install tcl-tk
- brew install python3 --with-tcl-tk
- 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"
- source "$HOME/venv/bin/activate" - source "$HOME/venv/bin/activate"
install: pip install wheel PyMuPDF pytest pdfrw install: pip install wheel PyMuPDF pytest pdfrw
script: pytest test.py script:
- python --version
- python3 --version
- python -c 'import tkinter'
- pytest test.py