Run a bash -lc command with live output.
(cmd: str, check: bool = True)
| 325 | print(c("\nFailures:", C.ERR)) |
| 326 | for item in self.failed: |
| 327 | print(f" - {item}") |
| 328 | |
| 329 | |
| 330 | SUMMARY = RunSummary() |
| 331 | ASSUME_YES = False |
| 332 | NON_INTERACTIVE = False |
| 333 | |
| 334 | |
| 335 | def supports_color() -> bool: |
| 336 | return sys.stdout.isatty() and os.environ.get("TERM", "") not in ("", "dumb") |
no outgoing calls
no test coverage detected