/ dev / clint / tests / rules / conftest.py
conftest.py
1  import pytest
2  from clint.index import SymbolIndex
3  
4  
5  @pytest.fixture(scope="session")
6  def index() -> SymbolIndex:
7      return SymbolIndex.build()