mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
f4446543ae
* Add skeleton for api call * Modify encoding and decoding nodes/edges * Add change encoding from base64 to hex * reformat * Target libpng function in example * remove old project name * cli fixes * Add get_function via byte offsets * refactor --------- Co-authored-by: Ian Smith <ian.smith@trailofbits.com>
16 lines
216 B
Makefile
16 lines
216 B
Makefile
all: && sync reformat lint test
|
|
|
|
sync:
|
|
uv sync --all-extras
|
|
|
|
reformat:
|
|
uv run ruff format
|
|
uv run ruff check --fix
|
|
|
|
lint:
|
|
uv run ruff format --check
|
|
uv run ruff check
|
|
|
|
test:
|
|
uv run pytest -svv
|