From 54d97b81cc5aecab53f0f6d1123143d0ba3991b7 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 3 Jan 2013 21:35:44 +0100 Subject: [PATCH] Enable testing with python 3.3 and pypy as well The pypy test is not versioned, since Debian only provides a single pypy binary, so I don't have an environment with multiple pypy installations. --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2fb3d2e..97cad8c 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,16 @@ dist: fakeroot ./setup.py sdist test: - for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2; do \ + @for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3; do \ if type python$$ver >/dev/null; then \ echo Testing with python$$ver; \ - python$$ver ./setup.py test; \ - fi; \ - done + python$$ver ./setup.py test -q; \ + fi; \ + done; + @if type pypy >/dev/null; then \ + echo Testing with pypy; \ + pypy ./setup.py test -q; \ + fi clean: rm -rf $(DOCHTML) $(DOCTREES) -- 2.39.2