Skip to content

Commit

Permalink
Merge pull request #1195 from rvykydal/test-os-variants-workflow-doc-…
Browse files Browse the repository at this point in the history
…update

Test os variants workflow doc update
  • Loading branch information
rvykydal authored Jun 3, 2024
2 parents ffeeaf4 + 1e25fdc commit fbfd66e
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/test-os-variants.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
# Run kickstart tests in a PR triggered by a "/test-os-variants" command from an organization member
#
# To run all tests affected by the PR (or just smoke tests if the PR changes no tests)
# To run all tests changed in the PR (or just smoke tests if the PR changes no tests)
# use this in a PR comment:
#
# /test-os-variants
#
# Alternatively it is also possible to specify tests to run or test to be skipped:
#
# Alternatively it is also possible to specify tests to run explicitly:
#
# /test-os-variants --testtype TESTTYPE --skip-testtypes TYPE[,TYPE..] TEST1 TEST2
#
# Examples:
#
# /test-os-variants keyboard lang
# ... run the tests specified by names (space separated)
#
# /test-os-variants --skip-testtypes gh123,gh765 keyboard lang
# ... run the tests specified by names while skipping tests with given types (comma separated)
#
# /test-os-variants --testtype network
# ... run all the tests of type network
#
# /test-os-variants --testtype network --skip-testtypes gh123,gh765
# ... run all the tests of type network while skipping tests with given types (comma separated)
#
# /test-os-variants --skip-testtypes gh123,gh765
# ... run all the tests while skipping tests with given types (comma separated)
#
#
# Lastly there is a dry-run mode, that just indicates which tests would be run
# (useful to check test grouping and overall infra health):
#
# /test-os-variants-dry
# /test-os-variants-dry ...
#
#
name: test-os-variants
Expand Down

0 comments on commit fbfd66e

Please sign in to comment.