Lines Matching +full:- +full:uall
1 :mod:`test` --- Regression tests package for Python
16 --------------
39 .. _writing-tests:
42 ----------------------------------------------
90 ``python -m unittest`` CLI.
123 behavior from side-effects of importing a module.
159 Running tests using the command-line interface
160 ----------------------------------------------
163 test suite, thanks to the :option:`-m` option: :program:`python -m test`. Under
164 the hood, it uses :mod:`test.regrtest`; the call :program:`python -m
172 regression test (:program:`python -m test test_spam`) will minimize output and
176 tests to use to be set. You do this by using the ``-u`` command-line
177 option. Specifying ``all`` as the value for the ``-u`` option enables all
178 possible resources: :program:`python -m test -uall`.
180 comma-separated list of resources that are not desired may be listed after
181 ``all``. The command :program:`python -m test -uall,-audio,-largefile`
183 ``largefile`` resources. For a list of all resources and more command-line
184 options, run :program:`python -m test -h`.
188 top-level directory where Python was built. On Windows,
193 :mod:`test.support` --- Utilities for the Python test suite
215 :mod:`unittest`\ -based tests and :class:`unittest.TestCase`'s assertion
252 A non-ASCII character encodable by :func:`os.fsencode`.
263 Set to a non-ASCII name for a temporary file.
328 The timeout value depends on the regrtest ``--timeout`` command line option.
342 "too long". The timeout value depends on the regrtest ``--timeout`` command
449 byte-compiled files of the module.
493 Return ``True`` if Python was not built with ``-O0`` or ``-Og``.
585 Use this check to guard CPython's implementation-specific tests or to
601 ``check_warnings`` accepts 2-tuples of the form ``("message regexp",
820 ``f"Warning -- {msg}"``. If *msg* is made of multiple lines, add
821 ``"Warning -- "`` prefix to each line.
934 Decorator for skipping tests on non-IEEE 754 platforms.
1000 *size* is a requested size for the test (in arbitrary, test-interpreted
1008 means the test doesn't support dummy runs when ``-M`` is not specified.
1132 Use this at the end of ``test_main`` whenever sub-processes are started.
1221 Return ``True`` if the file system for *directory* is case-insensitive.
1344 `SetErrorMode <https://msdn.microsoft.com/en-us/library/windows/desktop/ms680621.aspx>`_.
1356 is useful for testing module-level behaviors, such as the emission of a
1409 Simple :term:`path-like object`. It implements the :meth:`__fspath__`
1414 :mod:`test.support.socket_helper` --- Utilities for socket tests
1447 or passed to an external program (i.e. the ``-accept`` argument to
1492 :mod:`test.support.script_helper` --- Utilities for the Python execution tests
1509 mode (``-I``) or no environment mode (``-E``) sub-interpreter process.
1540 Python is started in isolated mode (command line option ``-I``),
1603 :mod:`test.support.bytecode_helper` --- Support tools for testing correct bytecode generation