Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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