(self, *testargs, **kw)
| 1006 | """ |
| 1007 | |
| 1008 | def run_tests(self, *testargs, **kw): |
| 1009 | cmdargs = ['-m', 'test', '--testdir=%s' % self.tmptestdir, *testargs] |
| 1010 | return self.run_python(cmdargs, **kw) |
| 1011 | |
| 1012 | def test_success(self): |
| 1013 | code = textwrap.dedent(""" |
no test coverage detected