You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@echo "$(ATTN_COLOR)==> Docs pages can be found at ./docs/_build/html, docs bundle available at ./docs/_build/docs_html.zip"
.PHONY: test
test:
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
@tox -e py -- ./tests
.PHONY: test-unit
test:
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
@tox -e py -- ./tests/unit
.PHONY: test-integration
test:
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
@tox -e py -- ./tests/integration ./tests/system
.PHONY: up
up:
@echo "$(GREEN_COLOR)==> up $(RESET_COLOR)"
@docker-compose up -d
.PHONY: remove
remove:
@echo "$(GREEN_COLOR)==> rm $(RESET_COLOR)"
@docker-compose rm -f -s
.PHONY: wait_up
wait_up:
@echo "$(GREEN_COLOR)==> wait_up $(RESET_COLOR)"
@for i in `seq 0 180`; do if docker exec -it $(CONTAINER_NAME) /sbin/checkstate.sh &> /dev/null; then break; fi; printf "\rWaiting for Splunk for %s seconds..." $$i; sleep 1; done