forked from zaxon/clusterfuzz-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
27 lines (23 loc) · 1007 Bytes
/
circle.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
dependencies:
override:
- sudo apt-get install libpython2.7-dev
- ./pants -V
cache_directories:
- "~/.cache/pants"
test:
override:
- ./pants run tool:pylint
- ./pants binary tool:clusterfuzz-`cat tool/clusterfuzz/resources/VERSION`
- ./pants test.pytest --coverage=1 tool:test
- ./pants run shared:coveralls -- --output=coverage_tool.json
- ./pants run error:pylint
- ./pants test.pytest --coverage=1 error:test
- ./pants run shared:coveralls -- --merge=coverage_tool.json --output=coverage_tool.json
- ./pants run ci/continuous_integration:pylint
- ./pants binary ci/continuous_integration:daemon
- ./pants test.pytest --coverage=1 ci/continuous_integration:test
- ./pants run shared:coveralls -- --merge=coverage_tool.json --output=coverage_tool.json
- ./pants run cmd-editor:pylint
- ./pants test.pytest --coverage=1 cmd-editor:test
- ./pants run shared:coveralls -- --merge=coverage_tool.json
- ./pants run butler:pylint