Skip to content

Commit

Permalink
feat: added hazard hero in list (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
TeKrop authored Nov 20, 2024
1 parent c8b922c commit 732e771
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/heroes/data/heroes.csv
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dva,D.Va,tank,350,375,0
doomfist,Doomfist,tank,525,0,0
echo,Echo,damage,250,0,0
genji,Genji,damage,250,0,0
hazard,Hazard,tank,525,0,0
hanzo,Hanzo,damage,250,0,0
illari,Illari,support,250,0,0
junker-queen,Junker Queen,tank,525,0,0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "overfast-api"
version = "3.5.1"
version = "3.6.0"
description = "Overwatch API giving data about heroes, maps, and players statistics."
license = {file = "LICENSE"}
authors = [
Expand Down
3 changes: 3 additions & 0 deletions tests/heroes/test_hero_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ def test_get_hero(
hero_html_data: str,
heroes_html_data: str,
):
if not hero_html_data:
pytest.skip("Hero HTML file not saved yet, skipping")

with patch(
"httpx.AsyncClient.get",
side_effect=[
Expand Down

0 comments on commit 732e771

Please sign in to comment.