From f46065a4eaad965d0839926bec9a5fb89880dfdf Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Sun, 26 Sep 2021 16:59:48 +1000 Subject: Avoid redundant python version test runs --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5c42fb3..4acd0b5 100644 --- a/Makefile +++ b/Makefile @@ -100,13 +100,13 @@ test_tzinfo: .stamp-tzinfo test_docs: .stamp-tzinfo cd build/dist/pytz/tests \ - && ${PYTHON} test_docs.py ${TESTARGS} \ - && ${PYTHON3} test_docs.py ${TESTARGS} + && ${PYTHON3} test_docs.py ${TESTARGS} \ + && ${PYTHON2} test_docs.py ${TESTARGS} test_zdump: dist - ${PYTHON} gen_tests.py ${TARGET} && \ - ${PYTHON} test_zdump.py ${TESTARGS} && \ + ${PYTHON3} gen_tests.py ${TARGET} && \ ${PYTHON3} test_zdump.py ${TESTARGS} && \ + ${PYTHON2} test_zdump.py ${TESTARGS} && \ ${PYTHON39} test_zdump.py ${TESTARGS} build/dist/test_zdump.py: .stamp-zoneinfo -- cgit v1.2.1