File size: 162 Bytes
7885a28 |
1 2 3 4 5 6 7 8 |
import pytest
@pytest.fixture(params=[True, False])
def sort(request):
"""Boolean sort keyword for concat and DataFrame.append."""
return request.param
|
7885a28 |
1 2 3 4 5 6 7 8 |
import pytest
@pytest.fixture(params=[True, False])
def sort(request):
"""Boolean sort keyword for concat and DataFrame.append."""
return request.param
|