Performance testing with pyUnitPerf
Summary: If you are familiar with Mike Clark‘s JUnitPerf framework, then you may be interested in knowing that I have just released a Python port: pyUnitPerf. You can browse the source code here and you can get a gzipped tarball from here.Details pyUnitPerf tests are meant to transparently add performance testing capabilities to existing pyUnit test suites. The pyUnitPerf framework introduces 2 new types of tests: TimedTest: runs an existing pyUnit test case by imposing a limit to the time it takes to run the test LoadTest: runs an existing pyUnit test case by simulating concurrent users and iterations Let’s…