Skip to content

Commit

Permalink
test: install crud from master
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
drewdzzz committed Aug 6, 2024
1 parent 8b2be01 commit 25e7546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 25e7546

Please sign in to comment.