From e425e4bfba01d0a2946df054552fa71bf0c02739 Mon Sep 17 00:00:00 2001 From: Pavel Safronov Date: Mon, 10 Jul 2023 11:56:52 -0700 Subject: [PATCH] Skip a tag test that depends on checkout functionality. --- integration-tests/bats/commit_tags.bats | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration-tests/bats/commit_tags.bats b/integration-tests/bats/commit_tags.bats index ceece7ded5..977c91e4d8 100644 --- a/integration-tests/bats/commit_tags.bats +++ b/integration-tests/bats/commit_tags.bats @@ -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'