2022-05-23 00:16:32 +04:00

10 lines
205 B
Python

import pytest
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
def orient(request):
"""
Fixture for orients excluding the table format.
"""
return request.param