Wesley Barroso Lopes

Results 199 comments of Wesley Barroso Lopes

@davisagli @jensens see the original discussion about this: https://github.com/plone/buildout.coredev/pull/693

@davisagli @mauritsvanrees when I run the `./bin/test -m plone.restapi` command, I still have some errors. For example: ```python Failure in test test_transition_with_effective_date (plone.restapi.tests.test_workflow.TestWorkflowTransition.test_transition_with_effective_date) Traceback (most recent call last): File "/usr/lib/python3.11/unittest/case.py",...

> I guess there is some bug in https://github.com/plone/plone.restapi/blob/main/src/plone/restapi/tests/statictime.py which tries to handle this already. @davisagli I don't quite understand what `StaticTime` is but it seems to be very specific...

@jenkins-plone-org please run jobs

@gforcada a good reference that should be documented: https://community.plone.org/t/how-to-modify-the-structure-mockup-pattern/11944

This is related to #4129. The [buildout](https://github.com/buildout/buildout) generates the following code for the [entry point](https://github.com/robotframework/robotframework/blob/e592e2f441e59abb9eef34cbed878c8051d81edf/setup.py#L71): ```python import robot.run if __name__ == '__main__': sys.exit(robot.run.run_cli()) ``` Then the above error occurs when...

> but could you not switch the entry points to use the root module directly? humm @choeger' suggestion works. If the entry point is changed to: ```python 'robot = robot:run_cli'...

@pekkaklarck I think it should be renamed because it causes confusion. But if it's going to cause a lot of trouble, could you at least change the entry point to...

> Do you mean that in our setup.py we should change 'robot = robot.run:run_cli' to 'robot = robot:run_cli'? Yes. Remembering that the other entrypoints will require the same change. >...

@nileshgulia1 @sneridagh Can we merge this and go fixing the errors?