Spaces:
Sleeping
Sleeping
File size: 183 Bytes
1f0b832 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
.PHONY: lint
lint: # Lints our code.
python -m pylint ./
.PHONY: black
black: # Formats our code.
python -m black ./
.PHONY: test
test: # Runs tests.
python -m pytest tests
|