Skip to content

Commit

Permalink
Skip dtype check in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcth committed May 28, 2024
1 parent 49a325a commit 456a1f8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion tests/integration/test_integration_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ def test_integration_get_buiding_items(self):
line.process()

testing.assert_geodataframe_equal(
line.df, test_vaglinje_result, check_like=True
line.df,
test_vaglinje_result,
check_like=True,
check_dtype=False,
)
5 changes: 4 additions & 1 deletion tests/integration/test_integration_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,8 @@ def test_integration_get_buiding_items(self):
point.process()

testing.assert_geodataframe_equal(
point.df, test_byggnad_result, check_like=True
point.df,
test_byggnad_result,
check_like=True,
check_dtype=False,
)
7 changes: 6 additions & 1 deletion tests/integration/test_integration_polygon.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,9 @@ def test_integration_get_ground_items(self):
)
polygon.process()

testing.assert_geodataframe_equal(polygon.df, test_mark_result, check_like=True)
testing.assert_geodataframe_equal(
polygon.df,
test_mark_result,
check_like=True,
check_dtype=False,
)

0 comments on commit 456a1f8

Please sign in to comment.