forked from enkidulan/slidelint
-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildout.cfg
41 lines (37 loc) · 860 Bytes
/
buildout.cfg
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
[buildout]
parts =
test
rebaseline
omelette
precommit-hook
package-extras = [tests]
package-name = slidelint
develop = .
[test]
recipe = zc.recipe.egg:script
dependent-scripts = true
scripts =
nosetests
pylint
slidelint
virtualenv
eggs =
nose
nose-selecttests
pylint
virtualenv
${buildout:package-name} ${buildout:package-extras}
interpreter = python
[rebaseline]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
${buildout:directory}/bin/python ${buildout:directory}/src/slidelint/tests/acceptance/TestUseCase.py rebaseline
output = ${buildout:directory}/bin/rebaseline
mode = 755
[omelette]
recipe = collective.recipe.omelette
eggs = ${test:eggs}
[precommit-hook]
recipe = plone.recipe.command
command = ln -sf ${buildout:directory}/pre-commit ${buildout:directory}/.git/hooks/