mirror of
https://github.com/minio/minio.git
synced 2026-02-06 19:00:14 -05:00
Add support for sse-s3 encryption with vault as KMS. Also refactoring code to make use of headers and functions defined in crypto package and clean up duplicated code.
9 lines
125 B
Makefile
9 lines
125 B
Makefile
TEST?=./...
|
|
|
|
test:
|
|
go test $(TEST) $(TESTARGS) -timeout=3s -parallel=4
|
|
go vet $(TEST)
|
|
go test $(TEST) -race
|
|
|
|
.PHONY: test
|