From fadbcdfa28ea940989734b35115ad4cecabe64f8 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 15 May 2016 05:18:37 +0200 Subject: [PATCH] Also run tests with debug interpreters And bump up Python 3.x versions. --- Makefile | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 9dabe7e..cafe42e 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,15 @@ dist: fakeroot ./setup.py sdist test: - @for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4; do \ - if type python$$ver >/dev/null; then \ - echo Testing with python$$ver; \ - python$$ver ./setup.py test -q; \ - fi; \ - done - @if type pypy >/dev/null; then \ + @for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7; do \ + for flavour in "" "-dbg"; do \ + if type python$$ver$$flavour >/dev/null; then \ + echo Testing with python$$ver$$flavour; \ + python$$ver$$flavour ./setup.py test -q; \ + fi; \ + done; \ + done; \ + if type pypy >/dev/null; then \ echo Testing with pypy; \ pypy ./setup.py test -q; \ fi -- 2.39.5