pysys.unit.pyunit¶
Contains the test class used to run PyUnit tests.
A suite of PyUnit tests becomes a single PySys test.
PyUnitTest¶
- class pysys.unit.pyunit.PyUnitTest(descriptor, outsubdir, runner)[source]¶
Bases:
pysys.basetest.BaseTest
Class for running PyUnit tests (standard Python unittest module). The execute method will execute all the .py files, find all the unittest.TestCase classes within those files and run the test methods within them. A separate Python process will be spawned for each input test file. By default child Python processes will have the same PYTHONPATH as the python process which is running pysys. However, this can be changed by overriding the getPythonPath() method.