diff options
author | AlexSm <alex@ydb.tech> | 2024-01-04 15:09:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 15:09:05 +0100 |
commit | dab291146f6cd7d35684e3a1150e5bb1c412982c (patch) | |
tree | 36ef35f6cacb6432845a4a33f940c95871036b32 /tools | |
parent | 63660ad5e7512029fd0218e7a636580695a24e1f (diff) | |
download | ydb-dab291146f6cd7d35684e3a1150e5bb1c412982c.tar.gz |
Library import 5, delete go dependencies (#832)
* Library import 5, delete go dependencies
* Fix yt client
Diffstat (limited to 'tools')
-rw-r--r-- | tools/go_test_miner/gotest/ya.make | 8 | ||||
-rw-r--r-- | tools/go_test_miner/main_test.go | 22 |
2 files changed, 0 insertions, 30 deletions
diff --git a/tools/go_test_miner/gotest/ya.make b/tools/go_test_miner/gotest/ya.make deleted file mode 100644 index 9a1fd7dec5..0000000000 --- a/tools/go_test_miner/gotest/ya.make +++ /dev/null @@ -1,8 +0,0 @@ -GO_TEST_FOR(tools/go_test_miner) - -IF (GO_VET == "yes" OR GO_VET == "on") - SET_APPEND(GO_VET_FLAGS -tests=false) -ENDIF() - -END() - diff --git a/tools/go_test_miner/main_test.go b/tools/go_test_miner/main_test.go deleted file mode 100644 index 593095e1f9..0000000000 --- a/tools/go_test_miner/main_test.go +++ /dev/null @@ -1,22 +0,0 @@ -package main - -import ( - "testing" -) - -func TestOk(t *testing.T) { -} - -func Test1(a *testing.T) { -} - -func Test_Function(tt *testing.T) { -} - -func Test(t *testing.T) { -} - -//nolint:tests -func Testfail(t *testing.T) { - panic("Not a test function!") -} |