Skip to content

Commit

Permalink
MNT: Add new linters for checking print statement and pytest style. T…
Browse files Browse the repository at this point in the history
…hen, fix the raised issues. [skip ci]
  • Loading branch information
Taher Chegini committed Oct 7, 2023
1 parent 8be504d commit f8f0727
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@pytest.fixture(autouse=True)
def add_standard_imports(doctest_namespace):
def _add_standard_imports(doctest_namespace):
"""Add async_retriever namespace for doctest."""
import pynldas2 as nldas

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pynldas2.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_geom_box():
assert_close(clm.prcp.mean(), 0.1534)


@pytest.mark.speedup
@pytest.mark.speedup()
def test_snow():
clm = nldas.get_bycoords(
(-89.6, 48.3), "2000-01-01", "2000-01-02", crs=DEF_CRS, variables="prcp", snow=True
Expand Down

0 comments on commit f8f0727

Please sign in to comment.