forked from awslabs/aws-lambda-powershell-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-requirements.psd1
More file actions
53 lines (47 loc) · 1.32 KB
/
test-requirements.psd1
File metadata and controls
53 lines (47 loc) · 1.32 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
@{
# Test configuration settings
PrivateData = @{
TestSettings = @{
# Output configuration
OutputFormat = 'NUnitXml'
OutputFile = 'TestResults.xml'
# Code coverage settings
CodeCoverage = @{
Enabled = $true
OutputFile = 'CodeCoverage.xml'
OutputFormat = 'JaCoCo'
Threshold = 80
}
# Parallel execution settings
Parallel = @{
Enabled = $true
MaxJobs = 4
}
# Test discovery settings
TestPath = @(
'tests/unit'
'tests/integration'
)
# Timeout settings (in seconds)
Timeout = @{
Unit = 30
Integration = 120
Build = 300
}
}
# Mock configuration
MockSettings = @{
RuntimeApiUrl = 'http://localhost:9001'
DefaultTimeout = 30
VerboseLogging = $false
RetryAttempts = 3
}
# CI/CD specific settings
CISettings = @{
FailOnCoverageThreshold = $true
GenerateTestReport = $true
UploadArtifacts = $true
ParallelExecution = $true
}
}
}