This repository was archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
66 lines (50 loc) · 1.94 KB
/
Makefile
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
ACTIVATE = . ./activate.sh
format:
$(ACTIVATE) && ruff format src tests
test:
$(ACTIVATE) && pytest -s tests/
cov:
$(ACTIVATE) && coverage run -m pytest -s tests && coverage combine && coverage report --show-missing && coverage html
sync:
uv pip compile pyproject.toml -o requirements.txt
uv pip compile pyproject.toml --extra test --extra local --extra ext -o requirements-dev.txt
uv pip sync requirements-dev.txt
uv pip install -e ".[dev]"
uv pip freeze
publish:
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
$(ACTIVATE) && python -m build
$(ACTIVATE) && python -m twine upload -r pypi dist/*
perf_test:
$(ACTIVATE) && python -m cProfile -o profile.dat -m pytest -s tests/
echo "** Slowest FuzzTypes functions by total time:"
$(ACTIVATE) && python -c "import pstats; pstats.Stats('profile.dat').sort_stats('tottime').print_stats(1000)" | grep -E "ncalls|/src/" | head -n 21
echo "\n\n** Slowest FuzzTypes functions by cumulative time:"
$(ACTIVATE) && python -c "import pstats; pstats.Stats('profile.dat').sort_stats('cumtime').print_stats(1000)" | grep -E "ncalls|/src/" | head -n 21
echo "\n\n** Slowest all-project functions by total time:"
$(ACTIVATE) && python -c "import pstats; pstats.Stats('profile.dat').sort_stats('tottime').print_stats(20)" | tail -n +8
rm profile.dat
pbcopy:
# copy all code to clipboard for pasting into an LLM
find . ! -path '*/.*/*' -type f \( -name "*.py" -o -name "*.md" \) -exec tail -n +1 {} + | pbcopy
#----------
# clean
#----------
clean: clean-build clean-pyc clean-test
clean-build:
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
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 {} +
clean-test:
rm -fr .cache
rm -fr .mypy_cache
rm -fr .pytest_cache
rm -f .coverage
rm -fr htmlcov/