Skip to content

Commit

Permalink
bug fix: update path
Browse files Browse the repository at this point in the history
  • Loading branch information
tobin-ford committed Aug 1, 2024
1 parent 4b92d07 commit e14c239
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_geospatial.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
import numpy as np
import os

with open(r"C:\Users\tford\Downloads\summit-weather.pkl", 'rb') as f:
GEO_WEATHER = pickle.load(f)

GEO_META = pd.read_csv(r"C:\Users\tford\Downloads\summit-meta.csv", index_col=0)
GEO_META = pd.read_csv(os.path.join(TEST_DATA_DIR, "summit-meta.csv"), index_col=0)

with open(os.path.join(TEST_DATA_DIR, "summit-weather.pkl"), 'rb') as f:
GEO_WEATHER = pickle.load(f)

# refactor
def test_analysis_standoff():
Expand Down

0 comments on commit e14c239

Please sign in to comment.