1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
.PHONY: all production test docs clean
all: production
production:
@true
docs:
tox -e docs
dev: $(LOCAL_CONFIG_DIR) $(LOGS_DIR) install-hooks
install-hooks:
pre-commit install -f --install-hooks
test:
tox
test-elasticsearch:
tox -- --runelasticsearch
test-docker:
docker-compose --project-name elastalert build tox
docker-compose --project-name elastalert run tox
clean:
make -C docs clean
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
rm -rf virtualenv_run .tox .coverage *.egg-info build
|