We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c668f15 commit e9ca1b5Copy full SHA for e9ca1b5
Makefile
@@ -79,6 +79,10 @@ test:
79
@echo ">> running tests"
80
@./runtests.sh
81
82
+clean-tests:
83
+ @$(info Cleaning up docker containers used for tests)
84
+ @docker-compose down
85
+
86
format:
87
@echo ">> formatting code"
88
@$(GO) fmt $(pkgs)
runtests.sh
@@ -1,4 +1,5 @@
1
#!/bin/bash
2
+docker-compose up -d
3
wait_mysql() {
4
local PORT=$1
5
while :
0 commit comments