Skip to content

Commit 5eae318

Browse files
authored
[None][chore] add missing tests to test list (NVIDIA#6590)
Signed-off-by: Superjomn <[email protected]>
1 parent 1aed751 commit 5eae318

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

tests/integration/test_lists/test-db/l0_a10.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ l0_a10:
9999
- unittest/test_model_runner_cpp.py
100100
- unittest/llmapi/test_build_cache.py
101101
- unittest/llmapi/test_llm_utils.py
102+
- unittest/llmapi/test_gc_utils.py
103+
- unittest/llmapi/test_reasoning_parser.py
104+
- unittest/llmapi/test_serialization.py
105+
- unittest/llmapi/test_utils.py
106+
- unittest/llmapi/test_llm_args.py
102107
- accuracy/test_cli_flow.py::TestGpt2::test_auto_dtype # 1 min
103108
- accuracy/test_cli_flow.py::TestGpt2::test_beam_search # 1 min
104109
- accuracy/test_cli_flow.py::TestGpt2::test_beam_search_large # 6 mins

tests/unittest/llmapi/test_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ def _my_method(self, *args, **kwargs):
1313
def _my_method(self, *args, **kwargs):
1414
pass
1515

16-
assert ApiStatusRegistry.get_api_status(_my_method) == "prototype"
16+
# will always keep the first status, and the behaviour will be unknown if
17+
# one method is registered with a different status in different files.
18+
assert ApiStatusRegistry.get_api_status(_my_method) == "beta"
1719

1820
class App:
1921

0 commit comments

Comments
 (0)