X Tutup
Skip to content

Commit 73d7845

Browse files
committed
Travis can't handle pytest on Python 3.5
1 parent bdd7df6 commit 73d7845

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ check:
2323
@PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \
2424
$(MAKE) check-$$PYTHON_VERSION
2525

26-
#: Tests for Python 2.7, 3.3, 3.4 and 3.5
27-
check-2.7 check-3.3 check-3.4 check-3.5: pytest
26+
#: Tests for Python 2.7, 3.3 and 3.4
27+
check-2.7 check-3.3 check-3.4: pytest
2828
$(MAKE) -C test $@
2929

30-
#: Tests for Python 3.2 - pytest doesn't work here
31-
check-3.2:
30+
#: Tests for Python 3.2 and 3.5 - pytest doesn't work here
31+
# Or rather 3.5 doesn't work not on Travis
32+
check-3.2 check-3.5:
3233
$(MAKE) -C test $@
3334

3435
#:Tests for Python 2.6 (doesn't have pytest)

0 commit comments

Comments
 (0)
X Tutup