-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: improve handling parameters in the pytest.mark.parametrize d…
…ecorator. If you specify the `ids` parameter, the reporter will use it as value of parameter in the test case. ```python @pytest.mark.parametrize("enter", [enter_from_meta, enter_from_expedition, enter_from_news], ids=["enter_from_meta", "enter_from_expedition", "enter_from_news"]) def test_enter(enter): enter() ```
- Loading branch information
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters