Skip to content

Commit 17d83c3

Browse files
Clean up repository root directory
- Move development test files to test/dev/ - Move documentation files to docs/ - Remove obsolete launch_mcp_server.sh (superseded by examples/) - Update .gitignore to exclude venv/ and *.log πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent aae80af commit 17d83c3

22 files changed

+28
-12
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ testext
77
test/python/__pycache__/
88
.Rhistory
99
make.out
10+
venv/
11+
*.log
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žlaunch_mcp_server.shβ€Ž

Lines changed: 0 additions & 12 deletions
This file was deleted.

β€Žtest/dev/README.mdβ€Ž

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Development Tests
2+
3+
Ad-hoc development and debugging scripts for testing MCP functionality. These are **not** part of the formal test suite run by `make test`.
4+
5+
## Contents
6+
7+
- `test_basic_mcp.sql` - Basic MCP connectivity test
8+
- `test_end_to_end_pagination.py` - End-to-end pagination testing
9+
- `test_pagination_*.sql` - Various pagination scenario tests
10+
- `test_template*.sql` - Prompt template testing
11+
- `test_logging.sql` - Logging functionality tests
12+
13+
## Usage
14+
15+
These scripts may contain hardcoded paths and require manual setup. They're preserved for reference and debugging purposes.
16+
17+
For formal testing, use:
18+
```bash
19+
make test
20+
```
21+
22+
Or run the Python integration tests:
23+
```bash
24+
python test/test_documented_features.py
25+
python test/test_security_validation.py
26+
```

0 commit comments

Comments
Β (0)