From 55668d3c5b62833a751dd7be2e91452a9fdc2641 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 3 Mar 2025 17:33:39 -0800 Subject: [PATCH] refactor: move a few tests to top-level tests/ directory --- {llama_stack/cli/tests => tests/cli}/test_stack_config.py | 0 .../models/llama/llama3 => tests/models}/test_system_prompts.py | 0 .../distribution/store/tests => tests/registry}/test_registry.py | 0 tests/{ => server}/test_logcat.py | 0 tests/{ => server}/test_replace_env_vars.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {llama_stack/cli/tests => tests/cli}/test_stack_config.py (100%) rename {llama_stack/models/llama/llama3 => tests/models}/test_system_prompts.py (100%) rename {llama_stack/distribution/store/tests => tests/registry}/test_registry.py (100%) rename tests/{ => server}/test_logcat.py (100%) rename tests/{ => server}/test_replace_env_vars.py (100%) diff --git a/llama_stack/cli/tests/test_stack_config.py b/tests/cli/test_stack_config.py similarity index 100% rename from llama_stack/cli/tests/test_stack_config.py rename to tests/cli/test_stack_config.py diff --git a/llama_stack/models/llama/llama3/test_system_prompts.py b/tests/models/test_system_prompts.py similarity index 100% rename from llama_stack/models/llama/llama3/test_system_prompts.py rename to tests/models/test_system_prompts.py diff --git a/llama_stack/distribution/store/tests/test_registry.py b/tests/registry/test_registry.py similarity index 100% rename from llama_stack/distribution/store/tests/test_registry.py rename to tests/registry/test_registry.py diff --git a/tests/test_logcat.py b/tests/server/test_logcat.py similarity index 100% rename from tests/test_logcat.py rename to tests/server/test_logcat.py diff --git a/tests/test_replace_env_vars.py b/tests/server/test_replace_env_vars.py similarity index 100% rename from tests/test_replace_env_vars.py rename to tests/server/test_replace_env_vars.py