(self, *testargs, **kw)
| 972 | """ |
| 973 | |
| 974 | def run_tests(self, *testargs, **kw): |
| 975 | cmdargs = ['-m', 'test', '--testdir=%s' % self.tmptestdir, *testargs] |
| 976 | return self.run_python(cmdargs, **kw) |
| 977 | |
| 978 | def test_success(self): |
| 979 | code = textwrap.dedent(""" |
no test coverage detected