forked from openprocurement/robot_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
54 lines (48 loc) · 2.08 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
[buildout]
extensions = mr.developer
auto-checkout = *
develop = .
find-links =
http://op:[email protected]/op/
parts =
scripts
[scripts]
recipe = zc.recipe.egg
eggs =
op_robot_tests
openprocurement_client
robotframework-lint
robotframework-debuglibrary
interpreter = python_interpreter
# The following piece of code changes the default output format of Munch
# for Munch-to-str conversion and for generation of so-called repr.
#
# As a result, Robot Framework records pretty human-readable (YAML) data in its
# log files instead of ugly piles of Munch(data=Munch(foo=Munch(...))).
#
# Original idea: https://github.com/Infinidat/munch/blob/2.0.4/README.md#serialization
initialization =
from munch import Munch
Munch.__str__ = lambda self: Munch.toYAML(self, allow_unicode=True,
default_flow_style=False).decode('utf-8')
Munch.__repr__ = Munch.__str__
[remotes]
gh = git://github.com/
gh_push = [email protected]:
[sources]
barbecue = git ${remotes:gh}openprocurement/barbecue.git
openprocurement_client = git ${remotes:gh}openprocurement/openprocurement.client.python.git
robot_tests.broker.dzo = git ${remotes:gh}openprocurement/robot_tests.broker.dzo.git
robot_tests.broker.etender = git ${remotes:gh}openprocurement/robot_tests.broker.etender.git
robot_tests.broker.newtend = git ${remotes:gh}openprocurement/robot_tests.broker.newtend.git
robot_tests.broker.privatmarket = git ${remotes:gh}openprocurement/robot_tests.broker.privatmarket.git
robot_tests.broker.prom = git ${remotes:gh}openprocurement/robot_tests.broker.prom.git
robot_tests.broker.publicbid = git ${remotes:gh}openprocurement/robot_tests.broker.publicbid.git
robot_tests.broker.publicportal = git ${remotes:gh}openprocurement/robot_tests.broker.publicportal.git
robot_tests.broker.smarttender = git ${remotes:gh}openprocurement/robot_tests.broker.smarttender.git
[versions]
fake-factory = 0.5.3
restkit = 4.2.2.op1
rfc6266 = 0.0.6.op1
robotframework = 2.8.7
robotframework-selenium2library = 1.7.4