You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where ${buildout:eggs} is the two packages. The first package run fine, but when it comes to the second this error occurs:
Traceback (most recent call last):
File "/Users/torkel/.buildout/eggs/zope.testing-3.9.7-py2.7.egg/zope/testing/testrunner/runner.py", line 366, in run_layer
setup_layer(options, layer, setup_layers)
File "/Users/torkel/.buildout/eggs/zope.testing-3.9.7-py2.7.egg/zope/testing/testrunner/runner.py", line 628, in setup_layer
setup_layer(options, base, setup_layers)
File "/Users/torkel/.buildout/eggs/zope.testing-3.9.7-py2.7.egg/zope/testing/testrunner/runner.py", line 633, in setup_layer
layer.setUp()
File "/Users/torkel/.buildout/eggs/plone.app.robotframework-0.6.1-py2.7.egg/plone/app/robotframework/remote.py", line 73, in setUp
portal._setObject(id_, globals()[id_]())
File "/Users/torkel/.buildout/eggs/Zope2-2.13.19-py2.7.egg/OFS/ObjectManager.py", line 325, in _setObject
v = self._checkId(id)
File "/Users/torkel/.buildout/eggs/Products.CMFCore-2.2.7-py2.7.egg/Products/CMFCore/Skinnable.py", line 210, in _checkId
return superCheckId(self, id, allow_dup)
File "/Users/torkel/.buildout/eggs/Zope2-2.13.19-py2.7.egg/OFS/ObjectManager.py", line 116, in checkValidId
'The id "%s" is invalid - it is already in use.' % id)
BadRequest: The id "RobotRemote" is invalid - it is already in use.
Looking at the corresponding code, it seems like it should have been removed in the tearDown method - apparently not.
The text was updated successfully, but these errors were encountered:
I have to seperate packages that .robot tests that include:
Then I have a buildoutpart which looks like this:
Where
${buildout:eggs}
is the two packages. The first package run fine, but when it comes to the second this error occurs:Looking at the corresponding code, it seems like it should have been removed in the tearDown method - apparently not.
The text was updated successfully, but these errors were encountered: