From: Jeremy Hylton Date: Thu, 1 Feb 2001 19:51:28 +0000 (+0000) Subject: add quicktest target -- runs test suite except for the eight slowest tests X-Git-Tag: v2.1a2~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a850d91bcc90b4840721d803ad9741b2fce53ee;p=python add quicktest target -- runs test suite except for the eight slowest tests --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 3c1d336c04..6f3da66f3f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -472,6 +472,13 @@ test: all platform -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) +QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \ + test_unicodedata test_re test_sre test_select test_poll +quicktest: all platform + -rm -f $(srcdir)/Lib/test/*.py[co] + -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS) + PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS) + # Install everything install: altinstall bininstall maninstall