PyTest - Markers
Given the following test file content:
What will be the result of running
import pytest
@pytest.mark.api
def test_api_call():
assert True
@pytest.mark.ui
def test_ui_load():
assert True
What will be the result of running
pytest -m ui?