Skip to content

Commit

Permalink
tests: Remove station functions from coverage report
Browse files Browse the repository at this point in the history
They are going to be updated soon...
  • Loading branch information
pmav99 committed Feb 3, 2024
1 parent 4e6d797 commit 0fe60d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ parallel = true
sigterm = true

[tool.coverage.report]
fail_under = 55
fail_under = 75
4 changes: 2 additions & 2 deletions thalassa/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def callback(x: float, y: float) -> holoviews.Curve:
def get_station_timeseries(
stations: xarray.Dataset,
pins: geoviews.DynamicMap,
) -> holoviews.DynamicMap:
) -> holoviews.DynamicMap: # pragma: no cover
import holoviews as hv
import pandas as pd

Expand Down Expand Up @@ -345,7 +345,7 @@ def callback(index: list[int]) -> holoviews.Curve:
def get_station_table(
stations: xarray.Dataset,
pins: geoviews.DynamicMap,
) -> holoviews.DynamicMap:
) -> holoviews.DynamicMap: # pragma: no cover
import holoviews as hv
import pandas as pd

Expand Down

0 comments on commit 0fe60d2

Please sign in to comment.