Files
Sven Riwoldt f7f8c52455 init
2024-10-19 12:31:37 +02: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