mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
e2f5401fb2
fixes https://github.com/coder/internal/issues/927 Adds a small subprocess that outlives the testing process to clean up any leaked test databases.
8 lines
118 B
Go
8 lines
118 B
Go
package main
|
|
|
|
import "github.com/coder/coder/v2/coderd/database/dbtestutil"
|
|
|
|
func main() {
|
|
dbtestutil.RunCleaner()
|
|
}
|