mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
31 lines
521 B
INI
31 lines
521 B
INI
[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']
|