Skip to content

Commit 63b71f1

Browse files
committed
Disable integration tests on github
1 parent d04c69e commit 63b71f1

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,16 @@ jobs:
5353
with:
5454
go-version: "1.25"
5555

56-
- name: Install Chrome
57-
uses: browser-actions/setup-chrome@v1
58-
with:
59-
chrome-version: stable
60-
6156
- name: Build
6257
run: |
6358
npm ci
6459
make build
6560
66-
- name: Run Go tests (unit + integration)
67-
run: go test -tags=integration ./server/... -v -timeout 300s
61+
- name: Run Go tests
62+
run: go test ./server/... -v -timeout 300s
6863

6964
- name: Run Go tests with coverage
70-
run: go test -tags=integration ./server/... -coverprofile=coverage.out -timeout 300s
65+
run: go test ./server/... -coverprofile=coverage.out -timeout 300s
7166

7267
- name: Display test coverage
7368
run: go tool cover -func=coverage.out

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ dist
66
*.js.map
77
env.sh
88
node_modules
9-
test_space
109
silverbullet
1110
deploy.json
1211
*.generated

0 commit comments

Comments
 (0)