_pytest.freeze_support module

Provides a function to report all internal modules for using freezing tools pytest

freeze_includes()[source]

Returns a list of module names used by pytest that should be included by cx_freeze.

for ... in _iter_all_modules(package, prefix='')[source]

Iterates over the names of all modules that can be found in the given package, recursively. Example:

_iter_all_modules(_pytest) ->
[‘_pytest.assertion.newinterpret’,

‘_pytest.capture’, ‘_pytest.core’, …

]