PyTest - Test Organization
Given the following pytest code, which tests will run when executing
pytest -m "critical"?
```python
import pytest
@pytest.mark.critical
def test_login():
assert True
@pytest.mark.regular
def test_logout():
assert True
def test_profile():
assert True
```