(options)
| 281 | |
| 282 | |
| 283 | def CMD_RUNTESTS(options): |
| 284 | runner = unittest.TextTestRunner() |
| 285 | suite = unittest.defaultTestLoader.loadTestsFromTestCase(TracCheckTestCase) |
| 286 | result = runner.run(suite) |
| 287 | return 0 if result.wasSuccessful() else 1 |
| 288 | |
| 289 | |
| 290 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected