-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add loopback action test cases (#5871)
What is the motivation for this PR? Add new test cases for loopback action How did you do it? Add 3 testcases for the loopback action feature: test_loopback_action_basic test_loopback_action_port_flap test_loopback_action_reload How did you verify/test it? Run all the new test cases, and tests pass
- Loading branch information
Showing
8 changed files
with
1,027 additions
and
25 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
Empty file.
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,8 @@ | ||
import logging | ||
from allure_commons._allure import step as raw_allure_step | ||
logger = logging.getLogger(__name__) | ||
|
||
|
||
def step(title): | ||
logger.info("Allure step: {}".format(title)) | ||
return raw_allure_step(title) |
Empty file.
Oops, something went wrong.