Skip to content

Commit

Permalink
fix CI test not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohan Totting committed Jul 17, 2024
1 parent f750324 commit 4a0511e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
go-version: '1.22'

- name: Test SFU
run: go test -timeout 5m -run `^(TestLeaveRoom|TestRenegotiation)$` github.com/inlivedev/sfu -mod=readonly
run: go test -timeout 5m -run '^(TestLeaveRoom|TestRenegotiation)$' github.com/inlivedev/sfu -mod=readonly

test-room:
runs-on: ubuntu-latest
Expand All @@ -64,7 +64,7 @@ jobs:
go-version: '1.22'

- name: Test Room
run: go test -timeout 5m -run `^(TestRoomCreateAndClose|TestRoomJoinLeftEvent|TestRoomStats|TestRoomAddClientTimeout)$` github.com/inlivedev/sfu -mod=readonly
run: go test -timeout 5m -run '^(TestRoomCreateAndClose|TestRoomJoinLeftEvent|TestRoomStats|TestRoomAddClientTimeout)$' github.com/inlivedev/sfu -mod=readonly

test-client:
runs-on: ubuntu-latest
Expand All @@ -83,7 +83,7 @@ jobs:
go-version: '1.22'

- name: Test Client
run: go test -timeout 5m -run `^(TestTracksSubscribe|TestSimulcastTrack|TestClientDataChannel)$` github.com/inlivedev/sfu -mod=readonly
run: go test -timeout 5m -run '^(TestTracksSubscribe|TestSimulcastTrack|TestClientDataChannel)$' github.com/inlivedev/sfu -mod=readonly

test-datachannel:
runs-on: ubuntu-latest
Expand All @@ -102,6 +102,6 @@ jobs:
go-version: '1.22'

- name: Test Datachannel
run: go test -timeout 5m -run `^(TestRoomDataChannel|TestRoomDataChannelWithClientID|TestStillUsableAfterReconnect)$` github.com/inlivedev/sfu -mod=readonly
run: go test -timeout 5m -run '^(TestRoomDataChannel|TestRoomDataChannelWithClientID|TestStillUsableAfterReconnect)$' github.com/inlivedev/sfu -mod=readonly


0 comments on commit 4a0511e

Please sign in to comment.