Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ def _looks_like_existing_test_path(arg: object) -> bool:
# Import plugins dynamically
if running_unit:
config.pluginmanager.import_plugin("tests.unit.fixtures")
# Load shared fixtures from openai_responses test file (used by conversations tests)
config.pluginmanager.import_plugin("tests.unit.providers.responses.builtin.test_openai_responses")

if running_integration:
config.pluginmanager.import_plugin("tests.integration.fixtures.common")
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,16 @@ convention = "google"
"benchmarking/**/*.py" = ["D101"] # Ignore docstring rules for benchmarking scripts
"client-sdks/**/*.py" = ["D101"] # Ignore docstring rules for client SDKs
"scripts/**/*.py" = ["D101"] # Ignore docstring rules for scripts
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_utils.py" = [
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_support.py" = [
"RUF001",
]
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_checkers_core.py" = [
"RUF001",
]
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_checkers_format.py" = [
"RUF001",
]
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_word_list.py" = [
"RUF001",
]
"src/llama_stack/providers/inline/scoring/basic/scoring_fn/fn_defs/regex_parser_multiple_choice_answer.py" = [
Expand Down
4 changes: 1 addition & 3 deletions scripts/check_file_size.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
GRANDFATHERED_FILES = {
"src/llama_stack/providers/inline/responses/builtin/responses/openai_responses.py",
"src/llama_stack/providers/inline/responses/builtin/responses/streaming.py",
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_utils.py",
"src/llama_stack/providers/inline/scoring/basic/utils/ifeval_word_list.py", # pure data file
"src/llama_stack/providers/utils/memory/openai_vector_store_mixin.py",
"src/llama_stack/providers/registry/vector_io.py",
"src/llama_stack/testing/api_recorder.py",
Expand All @@ -37,8 +37,6 @@
"tests/integration/vector_io/test_openai_vector_stores.py",
"tests/integration/responses/test_openai_responses.py",
"tests/integration/responses/test_tool_responses.py",
"tests/unit/providers/responses/builtin/test_openai_responses.py",
"tests/unit/providers/utils/inference/test_openai_mixin.py",
}


Expand Down
Loading
Loading