github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/cmd/github-pull-request-make/testdata/removed.diff (about) 1 2018/09/05 13:18:51 GitHub API token environment variable GITHUB_API_TOKEN is not set 2 diff --git a/build/teamcity-local-roachtest.sh b/build/teamcity-local-roachtest.sh 3 index 4cbf88256517..5a15c8339985 100755 4 --- a/build/teamcity-local-roachtest.sh 5 +++ b/build/teamcity-local-roachtest.sh 6 @@ -23,0 +23,0 @@ tc_end_block "Compile workload/roachtest" 7 8 tc_start_block "Run local roachtests" 9 # TODO(peter,dan): curate a suite of the tests that works locally. 10 -run build/builder.sh ./bin/roachtest run '(cli|kv/splits)' \ 11 +run build/builder.sh ./bin/roachtest run '(acceptance|kv/splits)' \ 12 --local \ 13 --cockroach "cockroach" \ 14 --workload "bin/workload" \ 15 diff --git a/pkg/acceptance/decommission_test.go b/pkg/acceptance/decommission_test.go 16 deleted file mode 100644 17 index 4605f3ec09dc..000000000000 18 --- a/pkg/acceptance/decommission_test.go 19 +++ /dev/null 20 @@ -1,20 +0,0 @@ 21 -// TestDecommission starts up an >3 node cluster and decomissions and 22 -// recommissions nodes in various ways. 23 -func TestDecommission(t *testing.T) { 24 - RunLocal(t, func(t *testing.T) { 25 - s := log.Scope(t) 26 - defer s.Close(t) 27 - 28 - runTestWithCluster(t, testDecommissionInner) 29 - }) 30 -} 31 - 32 -func testDecommissionInner( 33 - ctx context.Context, t *testing.T, c cluster.Cluster, cfg cluster.TestConfig, 34 -) { 35 - if c.NumNodes() < 4 { 36 - // TODO(tschottdorf): or we invent a way to change the ZoneConfig in 37 - // this test and test less ambitiously (or split up the tests). 38 - t.Skip("need at least four nodes") 39 - } 40 -}