зеркало из
https://github.com/viginum-datalab/twscrape.git
synced 2025-10-29 13:06:13 +02:00
35 строки
399 B
Makefile
35 строки
399 B
Makefile
.PHONY: all build
|
|
|
|
all:
|
|
@echo "hi"
|
|
|
|
install:
|
|
@pip install -e .[dev]
|
|
|
|
build:
|
|
@python -m build
|
|
|
|
ci:
|
|
@make lint
|
|
@make test
|
|
|
|
lint:
|
|
@ruff check twscrape
|
|
@ruff check tests
|
|
|
|
lint-fix:
|
|
@ruff check --fix twscrape
|
|
@ruff check --fix tests
|
|
|
|
pylint:
|
|
@pylint --errors-only twscrape
|
|
|
|
test:
|
|
@pytest -s --cov=twscrape tests/
|
|
|
|
get-cov:
|
|
@coverage report -m
|
|
|
|
act:
|
|
@act --container-architecture linux/amd64
|