blueprint-compiler/justfile
2023-10-26 23:45:34 +00:00

22 lines
350 B
Makefile

default: black isort
# Format with black formatter
black:
black blueprintcompiler/
# Sort imports using isort
isort:
isort blueprintcompiler/ --profile black
# Run all tests
test: mypy unittest
# Check typings with mypy
mypy:
mypy --python-version=3.9 blueprintcompiler/
# Test code with unittest
unittest:
python3 -m unittest