File tree Expand file tree Collapse file tree 6 files changed +42
-18
lines changed
Expand file tree Collapse file tree 6 files changed +42
-18
lines changed Original file line number Diff line number Diff line change 2424 curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
2525 export PATH="$HOME/.local/bin:$PATH"
2626 uv sync
27+ uv sync --dev
2728 - name : Run QA
2829 run : make qa
Original file line number Diff line number Diff line change 3030 curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
3131 export PATH="$HOME/.local/bin:$PATH"
3232 uv sync
33+ uv sync --dev
3334 - name : Run QA
3435 run : make qa
3536 - name : Get next version
Original file line number Diff line number Diff line change 11# Python folders
22__pycache__ /
3+ * .pyc
4+ * .pyo
5+ * .pyd
6+ * .egg-info /
7+ * .egg /
8+ .pytest_cache /
9+ .mypy_cache /
10+ .ruff_cache /
11+ .pytype /
12+
13+ # Package managers
14+ .uv /
15+ __pypackages__ /
16+ pip-wheel-metadata /
17+
18+ # Virtual environments
19+ venv /
20+ env /
21+ .venv /
22+ .env /
23+
24+ # Build and distribution
25+ build /
26+ dist /
27+
28+ # Testing and coverage
29+ .coverage
30+ .coverage. *
31+ htmlcov /
32+ .tox /
33+
34+ # IDE
35+ .idea /
36+ .vscode /
37+ .ipynb_checkpoints /
338
439# OS generated files and folders
540.DS_Store
Original file line number Diff line number Diff line change @@ -11,19 +11,6 @@ analyze:
1111build : qa clean
1212 @echo " Build prepared."
1313
14- clean :
15- @echo " Cleaning up..."
16- @find . -type d -name __pycache__ -exec rm -rf {} +
17- @find . -type f -name " *.pyc" -delete
18- @find . -type f -name " *.pyo" -delete
19- @find . -type f -name " *.pyd" -delete
20- @find . -type f -name " .coverage" -delete
21- @find . -type d -name " *.egg-info" -exec rm -rf {} +
22- @find . -type d -name " *.egg" -exec rm -rf {} +
23- @find . -type d -name " .pytest_cache" -exec rm -rf {} +
24- @find . -type d -name " .mypy_cache" -exec rm -rf {} +
25- @rm -rf build/ dist/ .coverage htmlcov/
26-
2714coverage :
2815 @echo " Checking test coverage..."
2916 @uv run pytest --cov=$(PACKAGE ) --cov-report=term-missing $(TEST_DIR )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dev = [
1919 " pytest-cov==5.0.0" ,
2020 " ruff==0.11.13" ,
2121 " bandit==1.7.7" ,
22- " pyright==1.1.401 " ,
22+ " pyright==1.1.402 " ,
2323]
2424
2525[build-system ]
You can’t perform that action at this time.
0 commit comments