[Python-Dev] What's the magic formula for regression-testing a single module?

Neal Norwitz neal@metaslash.com
Sat, 28 Dec 2002 11:25:22 -0500


On Sat, Dec 28, 2002 at 11:08:12AM -0500, Eric S. Raymond wrote:
> What's the magic formula for regression-testing a single library module?

I typically do:

        ./python -E -tt ./Lib/test/regrtest.py test_strptime

Replace test_strptime with the test(s) you want, presumably
test_cfgparser.

Neal