conftest.py 205 B

123456789
  1. import pytest
  2. @pytest.fixture(params=["split", "records", "index", "columns", "values"])
  3. def orient(request):
  4. """
  5. Fixture for orients excluding the table format.
  6. """
  7. return request.param