Skip to content

Commit

Permalink
Remove hardcoded paths from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ahalterman committed Jul 14, 2020
1 parent 106cbb4 commit 97edbee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mordecai/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

@pytest.fixture(scope='session', autouse=True)
def geo():
return Geoparser(nlp=nlp, threads=False, models_path = "/Users/ahalterman/MIT/Geolocation/mordecai_new/mordecai/mordecai/models/")
return Geoparser(nlp=nlp, threads=False)

@pytest.fixture(scope='session', autouse=True)
def geo_thread():
return Geoparser(nlp=nlp, threads=True, models_path = "/Users/ahalterman/MIT/Geolocation/mordecai_new/mordecai/mordecai/models/")
return Geoparser(nlp=nlp, threads=True)

0 comments on commit 97edbee

Please sign in to comment.