Run command and return output
(cmd)
| 39 | return BASE_TEST_DIR / f"test_{unique_id}" |
| 40 | |
| 41 | def run(cmd): |
| 42 | """Run command and return output""" |
| 43 | result = subprocess.run(cmd, shell=True, capture_output=True, text=True, env=_test_env()) |
| 44 | return result.stdout + result.stderr |
| 45 | |
| 46 | |
| 47 | def _is_neo4j_reachable(host: str = "localhost", port: int = 7687, timeout: float = 1.0) -> bool: |
no test coverage detected