Skip to content

Commit b44a727

Browse files
Merge pull request #7 from keboola/sql-interface-adjustments
(fix): MCP server adjustments of the tools
2 parents 0d68abc + 277b8c4 commit b44a727

File tree

11 files changed

+700
-302
lines changed

11 files changed

+700
-302
lines changed

.coverage

0 Bytes
Binary file not shown.

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,4 @@ jobs:
5353
pip install black isort mypy
5454
5555
- name: Check formatting with black
56-
run: black . --check
57-
58-
- name: Check imports with isort
59-
run: isort . --check-only
60-
61-
- name: Type check with mypy
62-
run: mypy src tests
56+
run: black . --check

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ build/
55
dist/
66
wheels/
77
*.egg-info
8+
.idea/
9+
.vscode/
810

911
# Virtual environments
1012
.venv
1113

12-
.env
14+
.env
15+
# Coverage files
16+
.coverage
17+
.coverage.*
18+
coverage.xml
19+
htmlcov/

0 commit comments

Comments
 (0)