Revision ea8549b8c206598622b2ce0deb22a5b749407284 authored by Michael Mandrus on 14 October 2022, 14:27:06 UTC, committed by GitHub on 14 October 2022, 14:27:06 UTC
* initial cut at refactor - need to run more tests

* fix unit tests

* change newly unused function to test helper

* create unit tests for parsing query requests that cover a range of cases

* add some comments

* rename function to avoid dev confusion
1 parent 2ccbb4d
Raw File
Makefile
all: fmt lint build clean

fmt:
	./scripts/format.sh

lint:
	./scripts/lint.sh

build:
	./scripts/build.sh

clean:
	rm -rf dashboards_out alerts.yaml rules.yaml
back to top