From b4434e6467e3fcd8c830d3faa4039095003216c8 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 1 Jul 2019 10:13:50 +0200 Subject: [PATCH] .travis.yml: use python instead of python3 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 35242cc..2875874 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,4 +26,5 @@ matrix: - source "$HOME/venv/bin/activate" install: pip install wheel PyMuPDF pytest pdfrw script: - - python3 -m pytest test.py + - python --version + - python -m pytest test.py