mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
17 lines
375 B
Go
17 lines
375 B
Go
//go:build agentintegration
|
|
|
|
package agent
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func requireRealAgentSmoke(t *testing.T) {
|
|
t.Helper()
|
|
if os.Getenv("MULTICA_RUN_REAL_AGENT_SMOKE") != "1" {
|
|
t.Skip("set MULTICA_RUN_REAL_AGENT_SMOKE=1 to allow real agent CLI and account access")
|
|
}
|
|
t.Log("REAL AGENT SMOKE TEST: this test may access an authenticated account and consume quota")
|
|
}
|