Skip to content

Commit be881fa

Browse files
committed
fix build tag + add README.md
1 parent 45d1f43 commit be881fa

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

tests/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Package tests
2+
3+
Package tests contains only integration tests for ydb-go-sdk. All test files must have build tag
4+
```go
5+
//go:build !fast
6+
// +build !fast
7+
```
8+
for run this test files as integration tests int github action `tests`.

tests/database_sql_regression_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build !fast
2+
// +build !fast
3+
14
package tests
25

36
import (

tests/monitoring_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build !fast
2+
// +build !fast
3+
14
package tests
25

36
import (

tests/static_credentials_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build !fast
2+
// +build !fast
3+
14
package tests
25

36
import (

tests/table_regression_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build !fast
2+
// +build !fast
3+
14
package tests
25

36
import (

0 commit comments

Comments
 (0)