1
0
Fork 0

Adding upstream version 0.6.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-21 10:59:46 +02:00
parent e5d20de2e1
commit 271f3e2863
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
20 changed files with 2544 additions and 0 deletions

4
scripts/format Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh -e
ruff decli tests --fix
black decli/ tests/

3
scripts/publish Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh -e
poetry publish --build -u "$PYPI_USERNAME" -p "$PYPI_PASSWORD"

10
scripts/test Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh -e
pr() {
poetry run python -m "$@"
}
pr pytest --cov-report term-missing --cov-report=xml:coverage.xml --cov=decli "${1:-tests}"
pr black decli tests --check
pr ruff decli/ tests/
pr mypy decli/ tests/