8 lines
144 B
Python
8 lines
144 B
Python
import pytest
|
|
from clint.index import SymbolIndex
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def index() -> SymbolIndex:
|
|
return SymbolIndex.build()
|