Run command and return output
(cmd)
| 22 | return BASE_TEST_DIR / f"test_{unique_id}" |
| 23 | |
| 24 | def run(cmd): |
| 25 | """Run command and return output""" |
| 26 | result = subprocess.run(cmd, shell=True, capture_output=True, text=True) |
| 27 | return result.stdout + result.stderr |
| 28 | |
| 29 | |
| 30 | def _is_neo4j_reachable(host: str = "localhost", port: int = 7687, timeout: float = 1.0) -> bool: |
no test coverage detected