Runs the unit tests without coverage.
()
| 18 | |
| 19 | @manager.command |
| 20 | def test(): |
| 21 | """Runs the unit tests without coverage.""" |
| 22 | tests = unittest.TestLoader().discover('tests') |
| 23 | unittest.TextTestRunner(verbosity=2).run(tests) |
| 24 | |
| 25 | |
| 26 | @manager.command |
nothing calls this directly
no outgoing calls
no test coverage detected