-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
squash: Move interactive and restraint to deferred
- Loading branch information
Showing
3 changed files
with
45 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
story: Provide way similar to git rebase --interactive | ||
|
||
description: | ||
Provide users with list of steps and let them edit them. | ||
Allow adding commands between, or at least interactive "pause". | ||
When user would be finished with single step, just continue recipe. | ||
Do not force users to remember all steps when working with them. | ||
Make it possible to repeat single step or abort current run. | ||
Allow repeating some steps just by repeating lines with task. | ||
|
||
example: | ||
- tmt run --all --interactive | ||
- tmt run --continue | ||
- tmt run --abort |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
story: | ||
As a tester I want the option to execute tests using the | ||
``restraint`` harness. | ||
|
||
description: | | ||
Restraint is the default harness in beaker for RHEL8 and | ||
beyond. In order to provide compatibility with beaker | ||
style tests, I would like a way to invoke ``tmt`` using | ||
the Restaint harness. This would enable Restraint tests to | ||
be invoked by ``tmt`` without modification. Some common | ||
commands include ``rstrnt-reboot``, ``rstrnt-abort``, and | ||
``rstrnt-report-result``. | ||
|
||
Although implementation of the full execute step plugin has | ||
been deferred, backward compatiblity scripts have been | ||
provided for several most commonly used restraint commands: | ||
|
||
rstrnt-abort | ||
:ref:`/stories/features/abort` | ||
|
||
rstrnt-reboot | ||
:ref:`/stories/features/reboot` | ||
|
||
rstrnt-report-log | ||
:ref:`/stories/features/report-log` | ||
|
||
rstrnt-report-result | ||
:ref:`/stories/features/report-result` | ||
|
||
example: | ||
- tmt run --all execute --how restraint |