-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log
discover_as
in keyword monitoring marker
CMK-18043
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# pylint: disable=invalid-name, missing-module-docstring | ||
import logging | ||
|
||
|
||
def monitor_subsequent_keyword_runtime( # pylint: disable=missing-function-docstring | ||
*, | ||
discover_as: str, # pylint: disable=unused-argument | ||
discover_as: str, | ||
) -> None: | ||
return | ||
logging.info(discover_as) |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "robotframework-robotmklibrary" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
description = "A Robot Framework keyword library intended to be used with Robotmk." | ||
authors = ["Jörg Herbel <[email protected]>"] | ||
packages = [ | ||
|