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
|