-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.visor.test.yaml
More file actions
53 lines (47 loc) · 1.28 KB
/
.visor.test.yaml
File metadata and controls
53 lines (47 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: "1.0"
# Test configuration for CI - uses mock AI and minimal checks
# This prevents API key requirements during automated testing
checks:
# Simple security check using mock AI provider
security:
type: ai
group: test
schema: plain
prompt: "This is a mock security analysis for CI testing. No real security analysis is performed."
on: [pr_opened, pr_updated]
ai:
provider: mock
model: mock
timeout: 60000
debug: false
# Performance check for CI testing - no 'on' field to test optional behavior
performance:
type: ai
group: test
schema: plain
prompt: "This is a mock performance analysis for CI testing. No real analysis is performed."
ai:
provider: mock
model: mock
timeout: 60000
debug: false
# Style check for CI testing
style:
type: ai
group: test
schema: plain
prompt: "This is a mock style analysis for CI testing. No real analysis is performed."
on: [manual]
ai:
provider: mock
model: mock
timeout: 60000
debug: false
output:
pr_comment:
enabled: false # Disable PR comments during CI testing
format: markdown
group_by: check
collapse: true
github_checks:
enabled: false # Disable GitHub checks during CI testing