We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c45a6 commit 32e1576Copy full SHA for 32e1576
client_test.go
@@ -35,16 +35,8 @@ func TestNewClient(t *testing.T) {
35
}
36
37
func TestNewClientFromEnv(t *testing.T) {
38
- // Note: This test would need environment variables set
39
- // For now, just test that it doesn't panic
40
- defer func() {
41
- if r := recover(); r != nil {
42
- // Expected to panic if env vars are not set
43
- }
44
- }()
45
-
46
- // This will panic if env vars are not set, which is expected
47
- // client := NewClientFromEnv()
+ // Skip this test in CI as environment variables are not set
+ t.Skip("Skipping NewClientFromEnv test - requires environment variables")
48
49
50
func TestMakeRequest(t *testing.T) {
0 commit comments