Module trase.test_all_modules_import
This test will dynamically find all modules in the codebase and load each one.
Modules should not execute significant code on import, but rather do any work within a function call such as main().
Functions
def find_modules(path) ‑> Generator-
Iteratively walk the directory tree under PATH and yield the full name of each, e.g. "trase.tools.pcs".
def pytest_generate_tests(metafunc)-
This is a trick to make a dynamically parametrized test, from https://docs.pytest.org/en/2.8.7/parametrize.html#basic-pytest-generate-tests-example
def test_module_loads(module_name)def unique_loadable_modules() ‑> Iterable[str]