Files

10 lines
205 B
Python
Raw Permalink Normal View History

2025-09-07 22:09:54 +02:00
import pytest
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
def orient(request):
"""
Fixture for orients excluding the table format.
"""
return request.param