Lines Matching +full:- +full:uall
2 :mod:`test` --- Regression tests package for Python
38 .. _writing-tests:
41 ----------------------------------------------
127 behavior from side-effects of importing a module.
158 Running tests using the command-line interface
159 ----------------------------------------------
162 test suite, thanks to the :option:`-m` option: :program:`python -m test.regrtest`.
168 -m test.regrtest test_spam`) will minimize output and only print whether
172 tests to use to be set. You do this by using the ``-u`` command-line
173 option. Specifying ``all`` as the value for the ``-u`` option enables all
174 possible resources: :program:`python -m test.regrtest -uall`.
176 comma-separated list of resources that are not desired may be listed after
177 ``all``. The command :program:`python -m test.regrtest -uall,-audio,-largefile`
179 ``largefile`` resources. For a list of all resources and more command-line
180 options, run :program:`python -m test.regrtest -h`.
184 top-level directory where Python was built. On Windows, executing
189 The :mod:`test` package can be run as a script: :program:`python -m test`.
193 :mod:`test.support` --- Utility functions for tests
214 :mod:`unittest`\ -based tests and :class:`unittest.TestCase`'s assertion
255 byte-compiled files of the module.
305 ``check_warnings`` accepts 2-tuples of the form ``("message regexp",
368 accepts 2-tuples of the form ``("message regexp", WarningCategory)`` as