Skip to content

Commit 25e7546

Browse files
committed
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`.
1 parent 8b2be01 commit 25e7546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ clean:
2424
deps: clean
2525
@(command -v tt > /dev/null || (echo "error: tt not found" && exit 1))
2626
( cd ./queue/testdata; tt rocks install queue 1.3.0 )
27-
( cd ./crud/testdata; tt rocks install crud 1.4.1 )
27+
( cd ./crud/testdata; tt rocks install crud )
2828

2929
.PHONY: datetime-timezones
3030
datetime-timezones:

0 commit comments

Comments
 (0)