Skip to content

Commit fc5e1e7

Browse files
Sync from monorepo: a8ccc56b
1 parent 518720a commit fc5e1e7

5 files changed

Lines changed: 17 additions & 3 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.4
1+
0.1.5

internal/hotreload/providers/expo_cancel_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"net"
88
"os"
99
"path/filepath"
10+
"runtime"
1011
"testing"
1112
"time"
1213
)
@@ -33,6 +34,10 @@ func freeTCPPort(t *testing.T) int {
3334
}
3435

3536
func TestExpoStart_ContextCancelled_NoDeadlock(t *testing.T) {
37+
if runtime.GOOS == "windows" {
38+
t.Skip("unix-only fake npx shell script test; skipped on windows")
39+
}
40+
3641
fakeBinDir := writeFakeNpx(t, 5)
3742
oldPath := os.Getenv("PATH")
3843
t.Setenv("PATH", fakeBinDir+":"+oldPath)

internal/hotreload/tunnel_test.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"fmt"
77
"os"
88
"path/filepath"
9+
"runtime"
910
"testing"
1011
"time"
1112
)
@@ -22,6 +23,10 @@ func writeSleepScript(t *testing.T, seconds int) string {
2223
}
2324

2425
func TestStartTunnel_ContextCancelled_NoDeadlock(t *testing.T) {
26+
if runtime.GOOS == "windows" {
27+
t.Skip("unix-only process script test; skipped on windows")
28+
}
29+
2530
scriptPath := writeSleepScript(t, 30)
2631
tunnel := NewTunnelManager(scriptPath, nil)
2732

@@ -52,6 +57,10 @@ func TestStartTunnel_ContextCancelled_NoDeadlock(t *testing.T) {
5257
}
5358

5459
func TestStartTunnel_ProcessExitsWithoutURL_NoDeadlock(t *testing.T) {
60+
if runtime.GOOS == "windows" {
61+
t.Skip("unix-only process script test; skipped on windows")
62+
}
63+
5564
tunnel := NewTunnelManager("/bin/true", nil)
5665

5766
done := make(chan error, 1)

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@revyl/cli",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Revyl CLI - AI-powered mobile app testing",
55
"keywords": [
66
"revyl",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "revyl"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "Revyl CLI - AI-powered mobile app testing"
55
readme = "README.md"
66
license = "MIT"

0 commit comments

Comments
 (0)