When the unittests fail, their failure is not reported:
- Run some tests
- Tess fail due to an exception, like:
NoSuchElementException: Message: u"Unable to find element with id == login_btn
- After all tests / subtests finish, unittest framework reports status to us
Expected: Any tests that had subtests fail are reported as failing
Actual: No failures are reported. I get this message even though all subtests failed due to the same exception:
Ran 2 tests in 103.678s
OK
When the unittests fail, their failure is not reported:
NoSuchElementException: Message: u"Unable to find element with id == login_btn
Expected: Any tests that had subtests fail are reported as failing
Actual: No failures are reported. I get this message even though all subtests failed due to the same exception:
Ran 2 tests in 103.678s
OK