nfl-playoff-challenge-streamlit / tests /contract /test_nfl_teams_practice_reports.py
Jon Solow
Add everything from yfdashboard
dd64f21
raw
history blame
253 Bytes
import pytest
from domain import teams
from queries.nfl_teams import practice_reports
@pytest.mark.parametrize("team", [(x) for x in teams.ALL_TEAMS])
def test_scrape_team_injury_report(team):
_ = practice_reports.scrape_team_injury_report(team)