9 lines
136 B
Python
9 lines
136 B
Python
|
import pytest
|
||
|
|
||
|
from pandas.tests.series.common import TestData
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='module')
|
||
|
def test_data():
|
||
|
return TestData()
|