()
| 12 | |
| 13 | |
| 14 | def find_all_modules() -> typing.List[str]: |
| 15 | return sorted( |
| 16 | mod |
| 17 | for _, mod, _ in pkgutil.walk_packages( |
| 18 | cryptography.__path__, |
| 19 | prefix=cryptography.__name__ + ".", |
| 20 | ) |
| 21 | ) |
| 22 | |
| 23 | |
| 24 | def test_no_circular_imports(subtests): |
no outgoing calls
no test coverage detected