-
Notifications
You must be signed in to change notification settings - Fork 20
/
buildout.cfg
40 lines (35 loc) · 840 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
[buildout]
newest = false
parts = acceptance_conf
init_docker
acceptance_test
[acceptance_conf]
recipe = collective.recipe.template
input = inline:
[general]
base_url = http://localhost:3000
implicit_wait = 10
docker_version = 1.10
postgresql_image = postgres:9.3
init_docker = ${init_docker:output}
output = ${buildout:directory}/test/acceptance/config.ini
[init_docker]
recipe = collective.recipe.template
input = templates/init_docker.sh.in
output = ${buildout:directory}/test/acceptance/init_docker.sh
[acceptance_test]
recipe = zc.recipe.egg
eggs = pytest
selenium
interpreter = py
[versions]
collective.recipe.template = 1.11
coverage = 3.7.1
docker-py = 0.4.0
mock = 1.0.1
py = 1.4.25
pytest = 2.6.3
requests = 2.4.1
selenium = 2.43.0
six = 1.8.0
zc.recipe.egg = 2.0.1