mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(params=[True, False])
|
|
def sort(request):
|
|
"""Boolean sort keyword for concat and DataFrame.append."""
|
|
return request.param
|