-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add time out assert data collection and presentation (#16831)
* add tests.ether * add new tests/ether.py * go time out assert * remove unused JunitPropertyName * rename to `tests/process_junit.py` * fixup * hinting and pylint * fixup * after install * handle skipped tests * --only plot_sync/ * better relative paths * better relative paths * todos * todos * tidy * back to full test run * add markdown headings * just make results an artifact $GITHUB_STEP_SUMMARY upload aborted, supports content up to a size of 1024k, got 6067k. * also output the top 50 to the step summary * Update process_junit.py * Update process_junit.py
- Loading branch information
Showing
10 changed files
with
718 additions
and
290 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
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,19 @@ | ||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING, Callable, Optional | ||
|
||
if TYPE_CHECKING: | ||
from tests.util.misc import TestId | ||
|
||
# NOTE: Do not just put any useful thing here. This is specifically for making | ||
# fixture values globally available during tests. In _most_ cases fixtures | ||
# should be directly requested using normal mechanisms. Very little should | ||
# be put here. | ||
|
||
# NOTE: When using this module do not import the attributes directly. Rather, import | ||
# something like `from tests import ether`. Importing attributes directly will | ||
# result in you likely getting the default `None` values since they are not | ||
# populated until tests are running. | ||
|
||
record_property: Optional[Callable[[str, object], None]] = None | ||
test_id: Optional[TestId] = None |
Oops, something went wrong.