Let's say I have these test functions:
def test_function_one():
assert # etc...
def test_function_two():
# should only run if test_function_one passes
assert # etc.
How can I make sure that test_function_two only runs if test_function_one passes (I'm hoping that it's possible)?
Edit: I need this because test two is using the property that test one verifies.