forked from openprocurement/robot_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
93 lines (87 loc) · 3.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[buildout]
extensions = mr.developer
auto-checkout = *
always-checkout = true
develop = .
find-links =
http://op:[email protected]/op/
parts =
scripts
[scripts]
recipe = zc.recipe.egg
eggs =
op_robot_tests
openprocurement_client
restkit
robotframework
robotframework-lint
robotframework-debuglibrary
robot_tests.broker.alltenders
robot_tests.broker.dzo
robot_tests.broker.25h8
robot_tests.broker.ztv
robot_tests.broker.etender
robot_tests.broker.newtend
robot_tests.broker.privatmarket
robot_tests.broker.prom
robot_tests.broker.publicbid
robot_tests.broker.publicportal
robot_tests.broker.smarttender
robot_tests.broker.uatenders
robot_tests.broker.ubiz
robot_tests.broker.zakpro
robot_tests.broker.proztorg
robot_tests.broker.uub
robot_tests.broker.aps
robot_tests.broker.kapitalist
robot_tests.broker.pzo
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 branch=use_requests
robot_tests.broker.alltenders = git ${remotes:gh}openprocurement/robot_tests.broker.alltenders.git
robot_tests.broker.dzo = git ${remotes:gh}openprocurement/robot_tests.broker.dzo.git
robot_tests.broker.25h8 = git ${remotes:gh}openprocurement/robot_tests.broker.25h8.git
robot_tests.broker.ztv = git ${remotes:gh}openprocurement/robot_tests.broker.ztv.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
robot_tests.broker.uatenders = git ${remotes:gh}openprocurement/robot_tests.broker.uatenders.git
robot_tests.broker.ubiz = git ${remotes:gh}openprocurement/robot_tests.broker.ubiz.git
robot_tests.broker.zakpro = git ${remotes:gh}openprocurement/robot_tests.broker.zakpro.git
robot_tests.broker.proztorg = git ${remotes:gh}openprocurement/robot_tests.broker.proztorg.git
robot_tests.broker.uub = git ${remotes:gh}openprocurement/robot_tests.broker.uub.git
robot_tests.broker.aps = git ${remotes:gh}openprocurement/robot_tests.broker.aps.git
robot_tests.broker.kapitalist = git ${remotes:gh}openprocurement/robot_tests.broker.kapitalist.git
robot_tests.broker.pzo = git ${remotes:gh}openprocurement/robot_tests.broker.pzo.git
[versions]
Faker = 0.7.7
mr.developer = 1.34
restkit = 4.2.2.op1
rfc6266 = 0.0.6.op1
robotframework = 3.0.0
robotframework-debuglibrary = 0.8
robotframework-lint = 0.7
robotframework-selenium2library = 1.8.0
setuptools = 18.3.2
zc.buildout = 2.5.3
zc.recipe.egg = 2.0.3