Skip to content

Commit 624b982

Browse files
authored
Merge pull request #65 from ydb-platform/fast
iverted build tag fast
2 parents 2131aa0 + d1e57c5 commit 624b982

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout code
2727
uses: actions/checkout@v2
2828
- name: Test
29-
run: go test -race -coverprofile=unit.txt -covermode=atomic ./...
29+
run: go test -race -tags=fast -coverprofile=unit.txt -covermode=atomic ./...
3030
- name: Clear report
3131
run: sed -i '/testutil\|trace\|test/d' unit.txt
3232
- name: Upload coverage to Codecov
@@ -66,7 +66,7 @@ jobs:
6666
- name: Checkout code
6767
uses: actions/checkout@v2
6868
- name: Test
69-
run: go test -race -tags=integration -coverpkg=./... -coverprofile=integration.txt -covermode=atomic ./test/...
69+
run: go test -race -coverpkg=./... -coverprofile=integration.txt -covermode=atomic ./test/...
7070
- name: Clear report
7171
run: sed -i '/testutil\|trace\|test/d' integration.txt
7272
- name: Upload coverage to Codecov

test/ratelimiter_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build integration
2-
// +build integration
1+
//go:build !fast
2+
// +build !fast
33

44
package test
55

test/table_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build integration
2-
// +build integration
1+
//go:build !fast
2+
// +build !fast
33

44
package test
55

0 commit comments

Comments
 (0)