diff --git a/source/python/pytest.md b/source/python/pytest.md index b317dc3..4d0732f 100644 --- a/source/python/pytest.md +++ b/source/python/pytest.md @@ -30,6 +30,16 @@ def test_eval(test_input, expected): ## Skip Tests +```python +import pytest + +@pytest.mark.skip(reason="no way of currently testing this") +def test_the_unknown(): + ... +``` + +- also see + ## Expect Test to fail ## Flaky Tests