-
Notifications
You must be signed in to change notification settings - Fork 0
/
creoide_test_config.json
51 lines (51 loc) · 1.05 KB
/
creoide_test_config.json
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
{
"testing": {
"frameworks": ["pytest", "unittest", "nose"],
"test_cases": {
"unit": ["tests/test_unit.py"],
"integration": ["tests/test_integration.py"],
"e2e": ["tests/test_e2e.py"]
},
"options": {
"pytest": {
"verbose": true,
"coverage": {
"enabled": true,
"report": "html",
"threshold": 80
},
"parallel": true,
"max_workers": 4
},
"unittest": {
"verbose": 2,
"failfast": true,
"buffer": true
},
"nose": {
"verbosity": 2,
"with-coverage": true,
"cover-erase": true,
"cover-html": true
}
},
"coverage": {
"enabled": true,
"thresholds": {
"statements": 85,
"branches": 75,
"functions": 90,
"lines": 85
},
"report": "xml"
},
"environment": {
"variables": {
"ENV": "test",
"DB_HOST": "localhost",
"DB_USER": "test_user",
"DB_PASSWORD": "test_password"
}
}
}
}