Basic function tests

def test_testName():
	pass # passes the test

Assert

assert 5 == 10 # will fail if False

Errors

with pytest.raises(ErrorType):
	function_being_tested()

# pytest expects the function_being_tested to raise ErrorType