-
Notifications
You must be signed in to change notification settings - Fork 385
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Most of the tests (with the exception of search tests with searches for goal states) exit when they fail. It would be better if we ran tests through to completion by reporting failures with the failAndContinue method that was recently added. (Of course, some tests must fail because a precondition for continuing wasn't met.)
Additional requirements:
- Cleanup
BaseJUnitTest#failedSearchTest. It's no longer needed iffailAndContinueexists. - Failures should be printed as they happen so that the errors are in their proper context. They shouldn't be printed twice though. This might have to be done with a
staticIdentityHashSetthat tracks which exceptions have been printed. This isn't the current behavior offailAndContinue. - Users should be able to disable this behavior and get all tests to fail fast with a flag to
run_tests.py.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request