diff --git a/Makefile b/Makefile index f6c82748369..3144ad1c20c 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ clean: .PHONY: test test: go-gen - bash -c "set -e; set -o pipefail; $(GOTEST) -tags=badger_storage_integration,grpc_plugin_storage_integration ./... | $(COLORIZE)" + bash -c "set -e; set -o pipefail; $(GOTEST) -tags=badger_storage_integration,grpc_plugin_storage_integration,memory_storage_integration ./... | $(COLORIZE)" .PHONY: all-in-one-integration-test all-in-one-integration-test: go-gen diff --git a/plugin/storage/integration/memstore_test.go b/plugin/storage/integration/memstore_test.go index 4c497748821..1271d22173f 100644 --- a/plugin/storage/integration/memstore_test.go +++ b/plugin/storage/integration/memstore_test.go @@ -12,6 +12,8 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. +//go:build memory_storage_integration +// +build memory_storage_integration package integration