# Module 3: Markers and Test Selection

```python
# test_markers.py

import pytest

@pytest.mark.slow
def test_something_slow():
    # test implementation

@pytest.mark.fast
def test_something_fast():
    # test implementation

@pytest.mark.skip(reason="Test not implemented yet")
def test_something_skipped():
    pass
```

```python
# run_tests.py

import pytest

pytest.main(["-m", "slow", "test_markers.py"])

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tvn.gitbook.io/test-automation-with-python/pytest/module-3-markers-and-test-selection.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
