Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def dataproxy():
return SeqRepoDataProxy(sr)


@pytest.fixture(scope="session")
@pytest.fixture
def rest_dataproxy():
return SeqRepoRESTDataProxy(
base_url=os.environ.get("SEQREPO_REST_URL", "http://localhost:5000/seqrepo")
Expand Down
2 changes: 1 addition & 1 deletion tests/extras/test_allele_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from ga4gh.vrs.extras.translator import AlleleTranslator


@pytest.fixture(scope="module")
@pytest.fixture
def tlr(rest_dataproxy):
return AlleleTranslator(
data_proxy=rest_dataproxy,
Expand Down
2 changes: 1 addition & 1 deletion tests/extras/test_cnv_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from ga4gh.vrs.extras.translator import CnvTranslator


@pytest.fixture(scope="module")
@pytest.fixture
def tlr(rest_dataproxy):
return CnvTranslator(
data_proxy=rest_dataproxy,
Expand Down
Loading