From 7c8eda470c84ae0b63a0f94f733137399e5e26f1 Mon Sep 17 00:00:00 2001 From: Justin Stephenson Date: Thu, 20 Jul 2023 12:18:29 -0400 Subject: [PATCH] docs: native speaker review changes --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 65ac16a..137f82b 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,12 @@ # pytest-ticket -This is a `pytest` plugin that adds the ability to filter test cases by +This is a `pytest` plugin that adds the ability to filter test cases by an associated ticket of a tracker of your choice. It adds: * `ticket_tools` option to `[pytest]` section of `pytest.ini` to define ticket tools (or trackers) of your choice -* `@pytest.mark.ticket` mark to associate test case with one or more tickets +* `@pytest.mark.ticket` mark to associate a test case with one or more tickets * `--ticket` command line option to filter out test cases that are not associated with selected ticket(s) @@ -43,7 +43,7 @@ It adds: ## Ticket mark -The ticket mark takes one or more keyword arguments as configured in pytest.ini +The ticket mark takes one or more keyword arguments as configured in `pytest.ini` `ticket_tools` option, each argument can take a single value or list of values. ```