-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
tests.cfg
166 lines (161 loc) · 4.25 KB
/
tests.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
[buildout]
parts +=
test
robot
# tests eggs for all core specific.
# for this eggs actually tests are run
# do not add eggs specific for one or the other python version here.
test-eggs =
borg.localrole
collective.monkeypatcher
diazo [test]
five.customerize
five.intid
icalendar
plone.alterego
plone.api [test]
plone.app.caching [test]
plone.app.content
plone.app.contentlisting [test]
plone.app.contentmenu
plone.app.contentrules
plone.app.contenttypes [test]
plone.app.customerize
plone.app.dexterity
plone.app.discussion [test]
plone.app.event [test]
plone.app.i18n
plone.app.intid
plone.app.iterate [test]
plone.app.layout [test]
plone.app.linkintegrity [test]
plone.app.locales
plone.app.lockingbehavior
plone.app.multilingual
plone.app.portlets [test]
plone.app.querystring
plone.app.redirector
plone.app.registry
plone.app.relationfield
plone.app.testing [test]
plone.app.textfield [tests]
plone.app.theming [test]
plone.app.upgrade [test]
plone.app.users [test]
plone.app.uuid
plone.app.versioningbehavior [tests]
plone.app.viewletmanager
plone.app.vocabularies
plone.app.widgets [test]
plone.app.workflow
plone.app.z3cform [tests]
plone.autoform
plone.batching
plone.behavior
plone.browserlayer
plone.cachepurging [test]
plone.caching
plone.contentrules
plone.dexterity [test]
plone.event [test]
plone.folder
plone.formwidget.namedfile
plone.i18n
plone.indexer
plone.intelligenttext
plone.keyring
plone.locking
plone.memoize
plone.namedfile [test]
plone.outputfilters [test]
plone.portlet.collection
plone.portlet.static
plone.portlets
plone.protect
plone.registry
plone.resource [test]
plone.resourceeditor [test]
plone.rest [test]
plone.restapi [test]
plone.rfc822
plone.scale
plone.schema
plone.schemaeditor [test]
plone.session
plone.staticresources
plone.stringinterp
plone.subrequest [test]
plone.supermodel [test]
plone.synchronize
plone.testing [test]
plone.theme
plone.transformchain
plone.transformchain [test]
plone.uuid [test]
plone.z3cform [test]
plonetheme.barceloneta
Products.CMFDiffTool
Products.CMFDynamicViewFTI
Products.CMFEditions
Products.CMFFormController
Products.CMFPlacefulWorkflow [test]
Products.CMFPlone [test]
Products.CMFQuickInstallerTool
Products.CMFUid
Products.DateRecurringIndex [test]
Products.DCWorkflow
Products.ExtendedPathIndex
Products.GenericSetup
Products.isurlinportal
Products.MimetypesRegistry
Products.PlonePAS
Products.PluggableAuthService
Products.PluginRegistry
Products.PortalTransforms
Products.statusmessages
Products.validation
Products.ZopeVersionControl
repoze.xmliter
${buildout:custom-eggs}
[buildout:python27]
test-eggs +=
archetypes.multilingual [test]
archetypes.schemaextender
plone.app.blob [test]
plone.app.collection [test]
plone.app.folder [test]
plone.app.imaging [test]
plone.app.referenceablebehavior
plone.formwidget.recurrence [archetypes,z3cform,test]
Products.Archetypes [test]
Products.ATContentTypes [test]
Products.contentmigration
Products.Marshall
[environment]
BUILDOUT_DIR = ${buildout:directory}
# This dir must exist. Recent plone.recipe.zope2instance normally creates it:
CHAMELEON_CACHE = ${buildout:directory}/var/cache
ROBOTSUITE_LOGLEVEL = ERROR
ROBOTSUITE_APPEND_OUTPUT_XML = 1
zope_i18n_compile_mo_files = true
[test]
recipe = collective.xmltestreport
eggs = ${buildout:test-eggs}
defaults = ['--auto-color', '--auto-progress', '--ignore_dir=.git', '--ignore_dir=bower_components', '--ignore_dir=node_modules']
environment = environment
initialization =
# Ensures that tests using datetime will work locally on machines using TZ = GMT
os.environ['TZ'] = 'UTC'
import time
try:
time.tzset()
except AttributeError:
# function not available on Windows
pass
[robot]
recipe = zc.recipe.egg
eggs =
${buildout:test-eggs}
Pillow
robotframework-selenium2screenshots
plone.app.robotframework[reload,debug]