From 25e75466b571bd1f2b1686d340bd3389b8410426 Mon Sep 17 00:00:00 2001 From: Andrey Saranchin Date: Tue, 6 Aug 2024 12:06:39 +0300 Subject: [PATCH] test: install crud from master Currently `make deps`, which is used for tests, installs specified version of `crud`. Such approach complicates integration with Tarantool: when a patch in Tarantool breaks integration with both `crud` and `go-tarantool` (because it uses `crud`), one needs to fix `crud`, then release it and then bump it to the new version in makefile of `go-tarantool`. Let's simplify this process - simply install `crud` from its master for tests. Note that such approach has a drawback - any commit in `crud` can break integration with `go-tarantool`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a165ef8..ce3505af 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ clean: deps: clean @(command -v tt > /dev/null || (echo "error: tt not found" && exit 1)) ( cd ./queue/testdata; tt rocks install queue 1.3.0 ) - ( cd ./crud/testdata; tt rocks install crud 1.4.1 ) + ( cd ./crud/testdata; tt rocks install crud ) .PHONY: datetime-timezones datetime-timezones: