Skip a tag test that depends on checkout functionality.

This commit is contained in:
Pavel Safronov
2023-07-10 11:56:52 -07:00
parent 04351c1134
commit e425e4bfba

View File

@@ -95,6 +95,10 @@ teardown() {
@test "commit_tags: use a tag as a ref for merge" {
dolt tag v1 HEAD
# TODO: remove this once dolt checkout is migrated
if [ "$SQL_ENGINE" = "remote-engine" ]; then
skip "This test relies on dolt checkout, which has not been migrated yet."
fi
dolt checkout -b other HEAD^
dolt sql -q "insert into test values (8),(9)"
dolt add -A && dolt commit -m 'made changes'