twscrape/Makefile
2023-05-05 23:31:49 +03:00

18 строки
196 B
Makefile

all:
@echo "hi"
lint:
ruff check twapi
lint-fix:
ruff check --fix twapi
pylint:
pylint --errors-only twapi
test:
pytest --cov=twapi tests/
act:
act --container-architecture linux/amd64