Skip to content

Commit

Permalink
Merge pull request #349 from openego/bug/fix#348
Browse files Browse the repository at this point in the history
Fix locally not working tests
  • Loading branch information
birgits committed Feb 6, 2023
2 parents d36d114 + fb599e4 commit f010d70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def read(fname):
"networkx >= 2.5.0",
"geopy >= 2.0.0",
"pandas >= 1.2.0",
"geopandas >= 0.9.0",
"geopandas >= 0.12.0",
"pyproj >= 3.0.0",
"shapely >= 1.7.0",
"pypsa >= 0.17.0, <= 0.20.1",
Expand Down
5 changes: 4 additions & 1 deletion tests/test_edisgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,10 @@ def test_import_edisgo_from_files(self):
assert edisgo_obj_loaded.config._data == edisgo_obj.config._data
# check results
assert_frame_equal(
edisgo_obj_loaded.results.i_res, edisgo_obj.results.i_res, check_freq=False
edisgo_obj_loaded.results.i_res,
edisgo_obj.results.i_res,
check_freq=False,
check_names=False,
)
# check electromobility
assert_frame_equal(
Expand Down

0 comments on commit f010d70

Please sign in to comment.