File size: 253 Bytes
1f1a2a2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)