From 73d784510a25ced891bfbb0a562f3fceed456306 Mon Sep 17 00:00:00 2001 From: rocky Date: Mon, 16 May 2016 13:48:00 -0400 Subject: [PATCH] Travis can't handle pytest on Python 3.5 --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a4838dc8..f4af0893 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,13 @@ check: @PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \ $(MAKE) check-$$PYTHON_VERSION -#: Tests for Python 2.7, 3.3, 3.4 and 3.5 -check-2.7 check-3.3 check-3.4 check-3.5: pytest +#: Tests for Python 2.7, 3.3 and 3.4 +check-2.7 check-3.3 check-3.4: pytest $(MAKE) -C test $@ -#: Tests for Python 3.2 - pytest doesn't work here -check-3.2: +#: Tests for Python 3.2 and 3.5 - pytest doesn't work here +# Or rather 3.5 doesn't work not on Travis +check-3.2 check-3.5: $(MAKE) -C test $@ #:Tests for Python 2.6 (doesn't have pytest)