Unverified Commit bd344cf9 authored by Qi Wang's avatar Qi Wang Committed by GitHub
Browse files

test: streamline Python test structure (#5684)

parent df2daadd
...@@ -102,6 +102,11 @@ generated-values.yaml ...@@ -102,6 +102,11 @@ generated-values.yaml
**/.devcontainer/.env **/.devcontainer/.env
TensorRT-LLM TensorRT-LLM
# The Linux kernel generates core dump files when a process crashes (receives signals
# like SIGSEGV, SIGABRT, SIGBUS, etc.). The Linux container's /proc/sys/kernel/core_pattern
# determines the filename (typically core or core.<pid>)
core
# Ruler Generated Files # Ruler Generated Files
/.cursor/instructions.md /.cursor/instructions.md
/.cursor/instructions.md.bak /.cursor/instructions.md.bak
......
...@@ -22,7 +22,13 @@ dynamo/ ...@@ -22,7 +22,13 @@ dynamo/
├── components/ ├── components/
│ ├── src/dynamo/ │ ├── src/dynamo/
│ | └── planner/ │ | └── planner/
│ | | └── zoo.py
│ | | └── foo/
│ | | | └── bar.py
│ │ │ └── tests/ # Python unit/integration tests for planner │ │ │ └── tests/ # Python unit/integration tests for planner
│ │ │ | └── test_zoo.py
│ │ │ | └── foo/ # Mirror the source code file hierarchy
│ │ │ | | └── test_bar.py
│ | └── router/ │ | └── router/
│ │ │ └── tests/ │ │ │ └── tests/
│ | └── ... │ | └── ...
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment