Commit 5424e66
refactor: Organize generator tests into dedicated folders
Move InsightfulTextGenerator tests into nested folder structure:
- Created: tests/agentune/analyze/feature/gen/insightful_text_generator/
- Moved 7 test files: test_e2e.py, test_e2e_blackbox.py, test_feature_classes.py,
test_llm_based_deduplicator.py, test_prompts.py, test_type_detection.py, test_utils.py
- Added __init__.py to new folder
- Updated conftest.py import paths
This matches the SemanticInsightsGenerator test structure and provides
better organization as more generators are added.
Test structure now:
tests/agentune/analyze/feature/gen/
├── insightful_text_generator/ # TextInsights tests
│ ├── __init__.py
│ ├── test_e2e.py
│ ├── test_e2e_blackbox.py
│ ├── test_feature_classes.py
│ ├── test_llm_based_deduplicator.py
│ ├── test_prompts.py
│ ├── test_type_detection.py
│ └── test_utils.py
├── semantic_insights_generator/ # SemanticInsights tests
│ ├── __init__.py
│ └── test_e2e.py
└── conftest.py
All tests verified passing after reorganization.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 043e296 commit 5424e66
9 files changed
Lines changed: 3 additions & 2 deletions
File tree
- tests/agentune/analyze/feature/gen
- insightful_text_generator
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
6 | | - | |
| 5 | + | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
0 commit comments