File: justfile

package info (click to toggle)
python-pwdlib 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 624 kB
  • sloc: python: 403; makefile: 14
file content (29 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# https://just.systems

install:
    uv sync --all-extras

lint:
    uv run ruff format .
    uv run ruff check --fix .
    uv run mypy pwdlib/

lint-check:
    uv run ruff format --check .
    uv run ruff check .
    uv run mypy pwdlib/

test:
    uv run pytest

test-cov-xml:
    uv run pytest --cov-report=xml

docs-serve:
    uv run mkdocs serve

docs-build:
    uv run mkdocs build

version bump:
    uvx hatch version {{bump}}