-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trasnfer code from fmf_metadata directly to FMF
- Loading branch information
Showing
10 changed files
with
604 additions
and
115 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
Empty file.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
from fmf.plugins.pytest.tmt_semantic import TMT | ||
from fmf.plugins.pytest.plugin import Pytest |
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,13 @@ | ||
CONFIG_POSTPROCESSING_TEST = "test_postprocessing" | ||
PYTEST_DEFAULT_CONF = { | ||
CONFIG_POSTPROCESSING_TEST: { | ||
"test": """ | ||
cls_str = ("::" + str(cls.name)) if cls.name else "" | ||
escaped = shlex.quote(f"{filename}{cls_str}::{test.name}") | ||
f"python3 -m pytest -m '' -v {escaped}" """ | ||
} | ||
} | ||
CONFIG_MERGE_PLUS = "merge_plus" | ||
CONFIG_MERGE_MINUS = "merge_minus" | ||
CONFIG_ADDITIONAL_KEY = "additional_keys" | ||
CONFIG_POSTPROCESSING_TEST = "test_postprocessing" |
Oops, something went wrong.