(project_root: str)
| 59 | |
| 60 | |
| 61 | def _has_built_dash_components(project_root: str) -> bool: |
| 62 | return all( |
| 63 | os.path.exists(os.path.join(project_root, "dash", package, "__init__.py")) |
| 64 | for package in ("html", "dcc", "dash_table") |
| 65 | ) |
| 66 | |
| 67 | |
| 68 | def run_module(codefile: str, module: str, extra: str = ""): |
no test coverage detected
searching dependent graphs…