Changes in / [1a8b91c:1d9998c] in sasmodels
- Files:
-
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/model_test.py
r9b7fac6 r3221de0 376 376 stream.writeln(traceback.format_exc()) 377 377 return 378 # Run the test suite 379 suite.run(result) 380 381 # Print the failures and errors 382 for _, tb in result.errors: 383 stream.writeln(tb) 384 for _, tb in result.failures: 385 stream.writeln(tb) 378 386 379 387 # Warn if there are no user defined tests. … … 385 393 # iterator since we don't have direct access to the list of tests in the 386 394 # test suite. 387 # In Qt5 suite.run() will clear all tests in the suite after running388 # with no way of retaining them for the test below, so let's check389 # for user tests before running the suite.390 395 for test in suite: 391 396 if not test.info.tests: … … 394 399 else: 395 400 stream.writeln("Note: no test suite created --- this should never happen") 396 397 # Run the test suite398 suite.run(result)399 400 # Print the failures and errors401 for _, tb in result.errors:402 stream.writeln(tb)403 for _, tb in result.failures:404 stream.writeln(tb)405 401 406 402 output = stream.getvalue()
Note: See TracChangeset
for help on using the changeset viewer.