Skip to content

Commit b673cfd

Browse files
committed
add makefile, formatting with ruff
1 parent ef30f79 commit b673cfd

File tree

6 files changed

+677
-398
lines changed

6 files changed

+677
-398
lines changed

servers/mcp-neo4j-data-modeling/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
## v0.1.0
1111

12-
* Basic functionality - Expose schemas for Data Model, Node, Relationship and Property
12+
* Basic functionality
13+
* Expose schemas for Data Model, Node, Relationship and Property
14+
* Validation tools
1315
* Visualize data model in interactive browser window
1416
* Import / Export from Arrows web application
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Makefile for cypher-guard Python bindings
2+
3+
.PHONY: format test clean
4+
5+
format:
6+
uv run ruff format .
7+
uv run ruff check --select I . --fix
8+
9+
test:
10+
uv run pytest tests/ -vv
11+
12+
13+
clean:
14+
rm -rf .mypy_cache/
15+
rm -rf .ruff_cache/
16+
rm -rf .pytest_cache/
17+
rm -rf .vscode/
18+
rm -rf .venv/
19+
rm -rf .mypy_cache/
20+
rm -rf .ruff_cache/
21+
rm -rf .pytest_cache/

0 commit comments

Comments
 (0)