Update tests/test_param.py
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 26s

This commit is contained in:
2025-07-17 10:10:21 +02:00
parent 98e5ef4e3b
commit ff2f5ee008
+2 -2
View File
@@ -10,8 +10,8 @@ def test_basic_ids(x):
# id au milieu avec autre kwarg (reason)
@pytest.mark.parametrize("x", [
pytest.param(10, reason="because", id="ten"),
pytest.param(20, id="twenty", marks=pytest.mark.skip(reason="nope")),
pytest.param(10, id="ten"),
pytest.param(20, marks=pytest.mark.skip(reason="nope"), id="twenty"),
])
def test_with_reason_and_marks(x):
pass