forked from peritus/robotframework-httplibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
41 lines (32 loc) · 786 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
show-picked-versions = true
develop = .
parts = develop-eggs robotframework pylint
[develop-eggs]
recipe = zc.recipe.egg
eggs = robotframework-httplibrary
[versions]
robotframework = 2.7.5
[robotframework]
recipe = zc.recipe.egg
eggs =
robotframework == ${versions:robotframework}
robotframework-httplibrary
entry-points =
robotframework=rf_httplib_dev_helper:run_cli
libdoc=robot.libdoc:libdoc_cli
arguments = sys.argv[1:]
[pylint]
recipe = zc.recipe.egg
eggs =
pylint
entry-points = pylint=pylint.lint:Run
extra-paths = src/
arguments = [
'--output-format=colorized',
'--reports=n',
'--include-ids=y',
'--disable=E0611,F0401,W0232,E1101,C0103,C0111,I0011',
'HttpLibrary',
] + sys.argv[1:]