Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PyTest: Multiple Failures

def test_one():
    assert True
    print('one')

def test_two():
    assert False
    print('two')

def test_three():
    assert True
    print('three')

def test_four():
    assert False
    print('four')

def test_five():
    assert True
    print('five')