Update tests/test_param.py
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 26s
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 26s
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user