Try travis testing on Python 3.5. Fix up Makefile to avoid pytest on 3.5

for now
This commit is contained in:
rocky
2015-12-31 11:19:46 -05:00
parent 4d5a3bc449
commit 0129c3a16e
2 changed files with 6 additions and 1 deletions

View File

@@ -24,7 +24,11 @@ check:
$(MAKE) check-$$PYTHON_VERSION
#: Tests for Python 2.7, 3.3 and 3.4
check-2.7 check-3.3 check-3.4 check-3.5: pytest
check-2.7 check-3.3 check-3.4: pytest
$(MAKE) -C test $@
#: Tests for Python 3.5 - pytest doesn't work here
check-3.5:
$(MAKE) -C test $@
#:Tests for Python 2.6 (doesn't have pytest)