diff --git a/integration-tests/bats/remotes.bats b/integration-tests/bats/remotes.bats index 868f2ab8ac..e10b4acf80 100644 --- a/integration-tests/bats/remotes.bats +++ b/integration-tests/bats/remotes.bats @@ -377,8 +377,6 @@ SQL } @test "remotes: push and pull with docs from remote" { - skip_nbf_dolt_1 "uses docs" - dolt remote add test-remote http://localhost:50051/test-org/test-repo echo "license-text" > LICENSE.md dolt docs update LICENSE.md LICENSE.md @@ -577,8 +575,6 @@ SQL } @test "remotes: clone a remote with docs" { - skip_nbf_dolt_1 "uses docs" - dolt remote add test-remote http://localhost:50051/test-org/test-repo echo "license-text" > LICENSE.md dolt docs update LICENSE.md LICENSE.md @@ -794,8 +790,6 @@ SQL } @test "remotes: dolt fetch with docs" { - skip_nbf_dolt_1 "uses docs" - # Initial commit of docs on remote echo "initial-license" > LICENSE.md dolt docs update LICENSE.md LICENSE.md diff --git a/integration-tests/bats/sql-diff.bats b/integration-tests/bats/sql-diff.bats index c7abc6c6fa..9eb29aca82 100644 --- a/integration-tests/bats/sql-diff.bats +++ b/integration-tests/bats/sql-diff.bats @@ -679,9 +679,7 @@ SQL } @test "sql-diff: sql diff ignores dolt docs" { - skip_nbf_dolt_1 "uses docs" - - echo "This is a README" > README.md + echo "This is a README" > README.md run dolt diff -r sql [ "$status" -eq 0 ] skip "Have to decide how to treat dolty_docs in diff -r sql" diff --git a/integration-tests/bats/sql-reset.bats b/integration-tests/bats/sql-reset.bats index e966a053fe..1bfb266f49 100644 --- a/integration-tests/bats/sql-reset.bats +++ b/integration-tests/bats/sql-reset.bats @@ -124,7 +124,6 @@ teardown() { } @test "sql-reset: DOLT_RESET --hard does not ignore staged docs" { - skip_nbf_dolt_1 "uses docs" # New docs gets referred as untracked file. echo ~license~ > LICENSE.md dolt docs update LICENSE.md LICENSE.md @@ -140,7 +139,6 @@ teardown() { } @test "sql-reset: CALL DOLT_RESET --hard does not ignore staged docs" { - skip_nbf_dolt_1 "uses docs" # New docs gets referred as untracked file. echo ~license~ > LICENSE.md dolt docs update LICENSE.md LICENSE.md @@ -215,7 +213,6 @@ teardown() { } @test "sql-reset: DOLT_RESET --soft ignores staged docs" { - skip_nbf_dolt_1 "uses docs" echo ~license~ > LICENSE.md dolt docs update LICENSE.md LICENSE.md dolt add . @@ -229,7 +226,6 @@ teardown() { } @test "sql-reset: CALL DOLT_RESET --soft ignores staged docs" { - skip_nbf_dolt_1 "uses docs" echo ~license~ > LICENSE.md dolt docs update LICENSE.md LICENSE.md dolt add .