Make tests more verbose

This commit is contained in:
adam-urbanczyk
2020-01-04 13:58:58 +01:00
parent 98fa16a0fd
commit a6c01dd33f

View File

@ -18,5 +18,5 @@ suite.addTests(unittest.TestLoader().loadTestsFromTestCase(TestJupyter.TestJupyt
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(TestWorkplanes.TestWorkplanes))
if __name__ == '__main__':
result = unittest.TextTestRunner().run(suite)
result = unittest.TextTestRunner(verbosity=2).run(suite)
sys.exit(not result.wasSuccessful())