-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-sample.yml
More file actions
67 lines (63 loc) · 2.11 KB
/
config-sample.yml
File metadata and controls
67 lines (63 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
server:
port: 8080,
sessionExpiration: 180 # delay after which session will end anyway (in minutes)
sessionInactivityExpiration: 10 # delay of inactivity after which session will end (in minutes)
sshKeys:
- name: "some ssh key"
pubKey: /home/myUser/.ssh/id_rsa.pub
privKey: /home/myUser/.ssh/id_rsa
- name: "some other ssh key"
pubKey: /home/myOtherUser/.ssh/id_rsa.pub
privKey: /home/myOtherUser/.ssh/id_rsa
workspace:
repositoriesDir: ./cloneDir # can be also absolute
temporaryRepositoriesDir: ./tempDir # can be also absolute
logsDir: ./logs # can be also absolute
xssConfigFile: ./xss-white-list-sample.json # can be also absolute
testCaseStatuses:
defaultStatus: todo # The default status of a test case
todo: # The test case isn't affected
done: false # with this status; the test is considered as finished
color: "#b0bec5" # The status color to display on charts (pay attention to the double quotes around the value)
lang: # The localized signification of the status, the name will be used if not lang is not defined
en: To do
fr: A faire
meaning:
en: "The test isn't affected to a user"
fr: "Le test n'est pas affecté à un utilisateur"
in progress: # The test case is affected to a user, so he is working on it
done: false
color: "#90caf9"
lang:
en: In progress
fr: En cours
meaning:
en: "The test is affected to a user"
fr: "Le test est affecté à un utilisateur"
blocked: # The test case can't be achieved
done: false
color: "#ffcc80"
lang:
en: Blocked
fr: Bloqué
meaning:
en: "The test can't be completed"
fr: "Le test ne peut pas être achevé"
success: # Test pass !
done: true
color: "#a5d6a7"
lang:
en: Successful
fr: Réussi
meaning:
en: "The test is complete and successful"
fr: "Le test est terminé avec succès"
failed: # Test failed !
done: true
color: "#ef9a9a"
lang:
en: Failed
fr: En échec
meaning:
en: "The test is complete but has failed"
fr: "Le test est terminé et en échec"