@pytest.mark.parametrize('type_document', ['тендер', 'заявка'])
def test_a(type_document):
assert type_document == 'тендер'
test_test.py::test_a[\u0442\u0435\u043d\u0434\u0435\u0440] PASSED
test_test.py::test_a[\u0437\u0430\u044f\u0432\u043a\u0430] FAILED
# encoding: utf-8
import pytest
@pytest.mark.parametrize('foo', ['büpf'])
def test_args(foo):
pass
@pytest.mark.parametrize('foo', ['a'], ids=['büpf'])
def test_ids(foo):
pass