• Home
  • Raw
  • Download

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.
370 byte-compiled files of the module.
414 Return ``True`` if Python was not built with ``-O0`` or ``-Og``.
506 Use this check to guard CPython's implementation-specific tests or to
522 ``check_warnings`` accepts 2-tuples of the form ``("message regexp",
850 Decorator for skipping tests on non-IEEE 754 platforms.
916 *size* is a requested size for the test (in arbitrary, test-interpreted
924 means the test doesn't support dummy runs when ``-M`` is not specified.
1033 Use this at the end of ``test_main`` whenever sub-processes are started.
1085 or passed to an external program (i.e. the ``-accept`` argument to
1109 Return ``True`` if the file system for *directory* is case-insensitive.
1232 `SetErrorMode <https://msdn.microsoft.com/en-us/library/windows/desktop/ms680621.aspx>`_.
1244 is useful for testing module-level behaviors, such as the emission of a
1302 Simple :term:`path-like object`. It implements the :meth:`__fspath__`
1307 :mod:`test.support.script_helper` --- Utilities for the Python execution tests
1324 mode (``-I``) or no environment mode (``-E``) sub-interpreter process.
1352 Python is started in isolated mode (command line option ``-I``),