Question 14
Consider the code below in a file called test_students.py.
test_students.py
import pytest
@pytest.fixturedef students(): return {"names": ["ravi", "raj"], "ages": [12, 9]}
@pytest.mark.checkdef test_name(students): assert "ravi" in students['names']
@pytest.mark.checkdef test_age(students): assert students['ages'][0] > 9
def test_check(students): assert "raj" not in students['names']What will be the output on the terminal on running the command “pytest -m check”? (assume that the tests ran in 0.03s and that the markers have been registered)