-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtesty.json.dist
executable file
·54 lines (54 loc) · 1.38 KB
/
testy.json.dist
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
{
"setup": {
"notifiers": {
"growl": {
"host": "127.0.0.1",
"port": "9887",
"password": "",
"enabled": true
},
"dbus": {
"enabled": false
},
"stdout": {
"enabled": true
},
"libnotify": {
"enabled": true
},
"file": {
"enabled": true,
"path": "~/workspace/testy/"
}
},
"parallel": {
"adapter": "sharedmemory",
"config": {
"path": "/tmp",
"host": "localhost",
"port": 11211
}
},
"sleep": 5
},
"projects": {
"testy": {
"path": "~/workspace/testy",
"test": "phpunit $file {Testy|Tests} {.php|Test.php}",
"test_dir": "~/workspace/testy",
"syntax": "php -l $file",
"find": "*.php",
"repeat": true
},
"testy-jshint": {
"path": "~/workspace/testy",
"test": "jshint $file --config hint-ci.json",
"find": "*.js"
},
"testy-csslint": {
"path": "~/workspace/testy",
"test": "node csslint.js --quiet $file",
"find": "*.css"
}
}
}