forked from NomaDamas/civStation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
89 lines (73 loc) · 2.52 KB
/
justfile
File metadata and controls
89 lines (73 loc) · 2.52 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Justfile for civStation
# Show available commands
list:
@just --list
# Run all the formatting, linting, and testing commands
qa:
uv run --python=3.13 --extra test ruff format .
uv run --python=3.13 --extra test ruff check . --fix
uv run --python=3.13 --extra test ruff check --select I --fix .
uv run --python=3.13 --extra test ty check .
uv run --python=3.13 --extra test pytest .
# Run all the tests for all the supported Python versions
testall:
uv run --python=3.10 --extra test pytest
uv run --python=3.11 --extra test pytest
uv run --python=3.12 --extra test pytest
uv run --python=3.13 --extra test pytest
# Run all the tests, but allow for arguments to be passed
test *ARGS:
@echo "Running with arg: {{ARGS}}"
uv run --python=3.13 --extra test pytest {{ARGS}}
# Run all the tests, but on failure, drop into the debugger
pdb *ARGS:
@echo "Running with arg: {{ARGS}}"
uv run --python=3.13 --extra test pytest --pdb --maxfail=10 --pdbcls=IPython.terminal.debugger:TerminalPdb {{ARGS}}
# Serve the docs site locally
docs:
uv run --python=3.13 --extra docs mkdocs serve -f docs/mkdocs.local.yml
# Build the docs site in strict mode
docs-build:
uv run --python=3.13 --extra docs mkdocs build --strict -f docs/mkdocs.yml
# Run coverage, and build to HTML
coverage:
uv run --python=3.13 --extra test coverage run -m pytest .
uv run --python=3.13 --extra test coverage report -m
uv run --python=3.13 --extra test coverage html
# Build the project, useful for checking that packaging is correct
build:
rm -rf build
rm -rf dist
uv build
VERSION := `grep -m1 '^version' pyproject.toml | sed -E 's/version = "(.*)"/\1/'`
# Print the current version of the project
version:
@echo "Current version is {{VERSION}}"
# Tag the current version in git and put to github
tag:
echo "Tagging version v{{VERSION}}"
git tag -a v{{VERSION}} -m "Creating version v{{VERSION}}"
git push origin v{{VERSION}}
# remove all build, test, coverage and Python artifacts
clean:
clean-build
clean-pyc
clean-test
# remove build artifacts
clean-build:
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
# remove Python file artifacts
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
# remove test and coverage artifacts
clean-test:
rm -f .coverage
rm -fr htmlcov/
rm -fr .pytest_cache