Run ``python -c "command"``.
(self, command: str)
| 1485 | return self.run(sys.executable, script) |
| 1486 | |
| 1487 | def runpython_c(self, command: str) -> RunResult: |
| 1488 | """Run ``python -c "command"``.""" |
| 1489 | return self.run(sys.executable, "-c", command) |
| 1490 | |
| 1491 | def runpytest_subprocess( |
| 1492 | self, *args: str | os.PathLike[str], timeout: float | None = None |
no test coverage detected