/example/test_simple.py:4: unconditional skipdef test_fail(): print("oh no, this test failed.", file=sys.stderr) > assert False E assert False test_simple.py:10: AssertionErrordef test_error(): > raise RuntimeError("uh oh, a runtime error") E RuntimeError: uh oh, a runtime error test_simple.py:17: RuntimeError