Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
bd344cf9
Unverified
Commit
bd344cf9
authored
Feb 10, 2026
by
Qi Wang
Committed by
GitHub
Feb 10, 2026
Browse files
test: streamline Python test structure (#5684)
parent
df2daadd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
.gitignore
.gitignore
+5
-0
tests/README.md
tests/README.md
+6
-0
No files found.
.gitignore
View file @
bd344cf9
...
@@ -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
...
...
tests/README.md
View file @
bd344cf9
...
@@ -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/
│ | └── ...
│ | └── ...
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment