summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2019-03-12 22:01:11 -0700
committerDana Powers <dana.powers@gmail.com>2019-03-12 22:01:11 -0700
commitc0add71e8d656691c0dd2dcb1936953f4483285b (patch)
tree991c3c6debc99d5cb28f6b694dd57a002f8f02d5 /Makefile
parent994d2838fdc77cc8b0840db0679cdbb0a0fb487b (diff)
downloadkafka-python-c0add71e8d656691c0dd2dcb1936953f4483285b.tar.gz
Update travis test coverage: 2.7, 3.4, 3.7, pypy2.7 (#1614)
* Use xenial dist for travis builds * Use openjdk8 for all travis tests * Update python build matrix -- add 3.7, drop 3.5/3.6 (keep 2.7, 3.4, pypy2.7)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7dfd305..b4dcbff 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,8 @@ servers/$(KAFKA_VERSION)/kafka-bin:
build-integration: servers/$(KAFKA_VERSION)/kafka-bin
# Test and produce coverage using tox. This is the same as is run on Travis
-test36: build-integration
- KAFKA_VERSION=$(KAFKA_VERSION) SCALA_VERSION=$(SCALA_VERSION) tox -e py36 -- $(FLAGS)
+test37: build-integration
+ KAFKA_VERSION=$(KAFKA_VERSION) SCALA_VERSION=$(SCALA_VERSION) tox -e py37 -- $(FLAGS)
test27: build-integration
KAFKA_VERSION=$(KAFKA_VERSION) SCALA_VERSION=$(SCALA_VERSION) tox -e py27 -- $(FLAGS)
@@ -56,4 +56,4 @@ doc:
make -C docs html
@echo "open file://`pwd`/docs/_build/html/index.html"
-.PHONY: all test36 test27 test-local cov-local clean doc
+.PHONY: all test37 test27 test-local cov-local clean doc