diff --git a/integration-tests/bats/1pk5col-ints.bats b/integration-tests/bats/1pk5col-ints.bats index d05cc43f03..2e7f921a5d 100755 --- a/integration-tests/bats/1pk5col-ints.bats +++ b/integration-tests/bats/1pk5col-ints.bats @@ -14,8 +14,6 @@ CREATE TABLE test ( PRIMARY KEY (pk) ); SQL - -skip_nbf_dolt_1 } teardown() { @@ -25,6 +23,7 @@ teardown() { # Create a single primary key table and do stuff @test "1pk5col-ints: create a table with a schema file and examine repo" { + skip_nbf_dolt_1 run dolt ls [ "$status" -eq 0 ] [[ "${lines[1]}" =~ "test" ]] || false @@ -73,6 +72,7 @@ teardown() { } @test "1pk5col-ints: add a row to a created table using dolt table put-row" { + skip_nbf_dolt_1 dolt add test dolt commit -m "create table" run dolt sql -q "insert into test values (0, 1, 2, 3, 4, 5)" @@ -390,6 +390,7 @@ teardown() { } @test "1pk5col-ints: generate a merge conflict and resolve with ours" { + skip_nbf_dolt_1 dolt add test dolt commit -m "added test table" dolt branch test-branch @@ -434,6 +435,7 @@ teardown() { } @test "1pk5col-ints: generate a merge conflict and try to roll back using dolt merge --abort" { + skip_nbf_dolt_1 dolt add test dolt commit -m "added test table" dolt branch test-branch @@ -465,6 +467,7 @@ teardown() { } @test "1pk5col-ints: generate a merge conflict and resolve with theirs" { + skip_nbf_dolt_1 dolt add test dolt commit -m "added test table" dolt branch test-branch @@ -658,6 +661,7 @@ DELIM } @test "1pk5col-ints: display correct merge stats" { + skip_nbf_dolt_1 dolt checkout -b test-branch dolt add test dolt commit -m "added test table" diff --git a/integration-tests/bats/2pk5cols-ints.bats b/integration-tests/bats/2pk5cols-ints.bats index deed2efcd8..b0130adde1 100755 --- a/integration-tests/bats/2pk5cols-ints.bats +++ b/integration-tests/bats/2pk5cols-ints.bats @@ -23,6 +23,7 @@ teardown() { } @test "2pk5cols-ints: create a table with a schema file and examine repo" { + skip_nbf_dolt_1 run dolt ls [ "$status" -eq 0 ] [[ "${lines[1]}" =~ "test" ]] || false @@ -40,6 +41,7 @@ teardown() { } @test "2pk5cols-ints: add a row to a two primary table using dolt table put-row" { + skip_nbf_dolt_1 dolt add test dolt commit -m "added test table" run dolt sql -q "insert into test values (0, 0, 1, 2, 3, 4, 5)" diff --git a/integration-tests/bats/auto_increment.bats b/integration-tests/bats/auto_increment.bats index 323d2c11b4..1bc85e4b79 100644 --- a/integration-tests/bats/auto_increment.bats +++ b/integration-tests/bats/auto_increment.bats @@ -3,6 +3,7 @@ load $BATS_TEST_DIRNAME/helper/common.bash setup() { setup_common + skip_nbf_dolt_1 dolt sql < other.csv pk,c1,c2,c3,c4,c5 8,1,2,3,4,5 @@ -392,6 +393,7 @@ DELIM } @test "import-create-tables: dolt diff on a newly created table" { + skip_nbf_dolt_1 dolt sql < pk.csv seq 0 100000 >> pk.csv diff --git a/integration-tests/bats/import-mysqldump.bats b/integration-tests/bats/import-mysqldump.bats index 25122c0a4c..74ef34ae85 100644 --- a/integration-tests/bats/import-mysqldump.bats +++ b/integration-tests/bats/import-mysqldump.bats @@ -117,6 +117,7 @@ SQL } @test "import-mysqldump: a table with all types with DEFAULT NULL dump" { + skip_nbf_dolt_1 run dolt sql < README.md echo license-text > LICENSE.md @@ -61,6 +62,7 @@ teardown() { } @test "sql-status: status works property with working tables in conflict" { + skip_nbf_dolt_1 # Start by causing the conflict. dolt sql -q "insert into test values (0, 0, 0, 0, 0, 0)" dolt add test @@ -84,6 +86,7 @@ teardown() { } @test "sql-status: status works properly with working docs in conflict" { + skip_nbf_dolt_1 echo "a readme" > README.md dolt add . dolt commit -m "Committing initial docs" diff --git a/integration-tests/bats/sql.bats b/integration-tests/bats/sql.bats index a67762cf1e..eae5b38125 100755 --- a/integration-tests/bats/sql.bats +++ b/integration-tests/bats/sql.bats @@ -40,6 +40,7 @@ teardown() { } @test "sql: errors do not write incomplete rows" { + skip_nbf_dolt_1 dolt sql <<"SQL" CREATE TABLE test ( pk BIGINT PRIMARY KEY, @@ -868,6 +869,7 @@ SQL } @test "sql: alter table to add and delete a column" { + skip_nbf_dolt_1 run dolt sql -q "alter table one_pk add (c6 int)" [ $status -eq 0 ] run dolt sql -q "describe one_pk" @@ -885,6 +887,7 @@ SQL } @test "sql: alter table to rename a column" { + skip_nbf_dolt_1 dolt sql -q "alter table one_pk add (c6 int)" run dolt sql -q "alter table one_pk rename column c6 to c7" [ $status -eq 0 ] @@ -895,6 +898,7 @@ SQL } @test "sql: alter table change column to rename a column" { + skip_nbf_dolt_1 dolt sql -q "alter table one_pk add (c6 int)" dolt sql -q "alter table one_pk change column c6 c7 int" run dolt sql -q "describe one_pk" @@ -983,6 +987,7 @@ SQL } @test "sql: alter table modify column type failure" { + skip_nbf_dolt_1 dolt sql <