Skip to content

Commit

Permalink
coverage fixes (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Jan 23, 2024
1 parent b883383 commit 9dc3c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
run: python -m pip install --no-deps -e .

- name: pytest
run: py.test --verbose --cov=TEMPLATE --cov-report=xml
run: py.test --verbose --cov=xarray_extras --cov-report=xml

- name: codecov.io
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion xarray_extras/kernels/interpolate.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from scipy.interpolate import BSpline, make_interp_spline
from scipy.interpolate._bsplines import _as_float_array, _augknt, _not_a_knot

if TYPE_CHECKING: # pragma: nocover
if TYPE_CHECKING:
# TODO Python 3.9 notations
from typing import Tuple, Union

Expand Down

0 comments on commit 9dc3c18

Please sign in to comment.