Skip to content

Commit

Permalink
Merge pull request #319 from ocefpaf/fix_httpx_status_check_change
Browse files Browse the repository at this point in the history
fix httpx status check change
  • Loading branch information
ocefpaf authored Oct 4, 2023
2 parents 96216a6 + 7b56de7 commit d85363e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
httpx
httpx>=0.25.0
pandas>=0.25.2,<3
pytz
2 changes: 1 addition & 1 deletion tests/test_erddapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_erddap2_10():
e = ERDDAP(server="http://erddap.ioos.us/erddap/")
url = e.get_search_url(search_for="NOAA", response="csv")
r = httpx.head(url)
assert r.raise_for_status() is None
assert r.status_code == 200


def test__griddap_check_constraints():
Expand Down

0 comments on commit d85363e

Please sign in to comment.