Have one pytest parameter having single quote in the string value. For example,
@pytest.mark.parametrize(
'message1, code, message2', [
('test_exception_message', 'error_code_example', ''apples' are in the 'basket'')])
message2 = 'apples' are in the 'basket'
How to handle the quotes? Thanks.