- Introduced `RELEASE.md` with comprehensive steps for creating, automating, and troubleshooting EasyHAProxy releases. - Enhanced the Makefile `test` command to include verbosity in the pytest execution.
9 lines
248 B
Makefile
9 lines
248 B
Makefile
VERSION := $(shell git rev-parse --short HEAD)
|
|
|
|
.PHONY: build
|
|
build:
|
|
docker build -t byjg/easy-haproxy --build-arg RELEASE_VERSION_ARG="$(VERSION)" -t byjg/easy-haproxy:local -f build/Dockerfile .
|
|
|
|
.PHONY: test
|
|
test:
|
|
cd src/ && pytest tests/ -vv
|