-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jst.yml
59 lines (58 loc) · 3.23 KB
/
.jst.yml
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
---
$:
preprocess:
'$.coverage.compare.storage.options.1.region': 'eval'
'$.coverage.compare.storage.options.1.accessKeyId': 'eval'
'$.coverage.compare.storage.options.1.secretAccessKey': 'eval'
'$.cache.options.1.region': 'eval'
'$.cache.options.1.accessKeyId': 'eval'
'$.cache.options.1.secretAccessKey': 'eval'
cache:
driver: 's3' # Available drivers: void, s3
options:
- 's3://travis-metadata/cache/MitocGroup/deepify' # S3 cache directory
- # S3 client options
region: 'process.env.JST_AWS_REGION'
accessKeyId: 'process.env.JST_AWS_ACCESS_KEY_ID'
secretAccessKey: 'process.env.JST_AWS_SECRET_ACCESS_KEY'
npm:
scripts: # Scripts to run after installing dependencies
- 'compile-travis'
dependencies: # Dependencies to add/overwrite
chai: 'latest'
emit:
pattern: # Files to include
- /^lib.es6\/.+\.js$/i
- /^test\/.+\.js$/i
ignore: # Files to exclude
- /^(.*\/)?node_modules(\/?$)?/i
test:
mocha:
options: # Mocha options
ui: 'bdd'
reporter: 'spec'
pattern: # Files to include
- /.+\.spec\.js$/i
ignore: ~ # Files to exclude
coverage:
pattern: # Files to include
- /.+\.js$/i
ignore: # Files to exclude
- /.+\.spec\.js$/i
- /^(.*\/)?node_modules(\/?$)?/i
reporters: # Istanbul reporters
text-summary: ~
compare:
negative-delta: 3 # Compare coverage info and if negative delta is more than X fail (0.01-100.00)
storage:
driver: 's3' # Available drivers: s3, volative
options:
- 's3://travis-metadata/coverage/MitocGroup/deepify' # S3 storage directory
- # S3 storage options
region: 'process.env.JST_AWS_REGION'
accessKeyId: 'process.env.JST_AWS_ACCESS_KEY_ID'
secretAccessKey: 'process.env.JST_AWS_SECRET_ACCESS_KEY'
plugin: # Main module definition
root: 'src/' # Root package directory (containing package.json and tests)
dependencies: ~ # Dependencies to add/overwrite (over $.npm.dependencies config)
### Add other modules here...