(self, code: str, proj_path: Path, args: Iterable[str] = ())
| 20 | return proc("crawl", "myspider", *args, cwd=proj_path) |
| 21 | |
| 22 | def get_log(self, code: str, proj_path: Path, args: Iterable[str] = ()) -> str: |
| 23 | _, _, stderr = self.crawl(code, proj_path, args=args) |
| 24 | return stderr |
| 25 | |
| 26 | def test_no_output(self, proj_path: Path) -> None: |
| 27 | spider_code = """ |
no test coverage detected