| [buildout]
 | |
| extends = base.cfg
 | |
| develop = .
 | |
| 
 | |
| eggs =
 | |
|     searx [test]
 | |
| 
 | |
| parts +=
 | |
|     pyscripts
 | |
|     robot
 | |
|     test
 | |
| 
 | |
| 
 | |
| [pyscripts]
 | |
| recipe = zc.recipe.egg:script
 | |
| eggs = ${buildout:eggs}
 | |
| interpreter = py
 | |
| dependent-scripts = true
 | |
| 
 | |
| 
 | |
| [robot]
 | |
| recipe = zc.recipe.testrunner
 | |
| eggs = ${buildout:eggs}
 | |
| defaults = ['--color', '--auto-progress', '--layer', 'SearxRobotLayer']
 | |
| 
 | |
| 
 | |
| [test]
 | |
| recipe = zc.recipe.testrunner
 | |
| eggs = ${buildout:eggs}
 | |
| defaults = ['--color', '--auto-progress', '--layer', 'SearxTestLayer', '--layer', '!SearxRobotLayer']
 |