mirror of https://github.com/python/cpython
add quicktest target -- runs test suite except for the eight slowest tests
This commit is contained in:
parent
6fe0a82ecb
commit
2a850d91bc
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue