You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kickoff Test Play needs validation from both the perspective of a "friendly kickoff" and "enemy kickoff". To avoid writing the same test template twice, the same test can be re-ran, except using the pytest parametrize feature to control which team is being validated. An example is shown below:
@pytest.mark.parametrize("is_friendly_test", [True, False])
def test_kickoff_play(simulated_test_runner, is_friendly_test):
# write test here...
Acceptance criteria
There is validation written for both enemy and friendly kickoff play tests
Tests are deterministic and passing
Blocked By
The text was updated successfully, but these errors were encountered:
Description of the task
Kickoff Test Play needs validation from both the perspective of a "friendly kickoff" and "enemy kickoff". To avoid writing the same test template twice, the same test can be re-ran, except using the pytest parametrize feature to control which team is being validated. An example is shown below:
Acceptance criteria
Blocked By
The text was updated successfully, but these errors were encountered: