Skip to content

Commit 874d757

Browse files
author
Trong Nhan Mai
committed
chore: address grammar and typo errors
Signed-off-by: Trong Nhan Mai <trong.nhan.mai@oracle.com>
1 parent 7996a65 commit 874d757

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/integration/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ $ python ./tests/integration/run.py run --exclude-tag npm-registry-testcase ./al
171171
You can simply think of each `--include-tag`/`--exclude-tag` argument as adding an additional constraint that a selected test case must satisfy.
172172
173173
Instructions on how to tag a test case for our CI/CD pipeline:
174-
- If you want a test case to **only** run for the container image, using **only** `macaron-docker-image`.
175-
- If you want a test case to **only** run with the Macaron Python package **only** `macaron-python-package`.
174+
- If you want a test case to **only** run for the container image, use **only** `macaron-docker-image`.
175+
- If you want a test case to **only** run with the Macaron Python package, use **only** `macaron-python-package`.
176176
- To skip a test case, use `skip`. `skip` still has the same effect if it's used with other tags.
177177
- If you want to run a test case for both the Macaron Python package and the docker container, use `macaron-python-package` and `macaron-docker-image` tags.
178-
- If you want to run test cases that must contain a given set of tags (e.g. `['tag-a', 'tag-b']`), please create an additional tag for those test cases (e.g `tag-a-b`) and use it within `--include-tag`.
178+
- If you want to run test cases that must contain all of a given set of tags (e.g. `['tag-a', 'tag-b']`), please create an additional tag for those test cases (e.g `tag-a-b`) and use it within `--include-tag`.
179179
- Test cases marked with `npm-registry-testcase` are not run if the environment variable `NO_NPM` is set to `TRUE`. This only applies when you run the integration tests with:
180180
```bash
181181
$ make integration-test

tests/integration/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ def load_test_cases(
744744
else:
745745
# Each --include-tag/--exclude-tag argument adds an additional constraint
746746
# that a selected test case needs to satisfy, i.e. a selected test case must:
747-
# - contains at least on tag specified with --include-tag
747+
# - contains at least one tag specified with --include-tag
748748
# - contains no tag specified with --exclude-tag
749749
select_case = True
750750
for include_tag in include_tags:

0 commit comments

Comments
 (0)