Dave
Dave
As a workaround on Ubuntu 22.04, logout, at the login screen switch to Xorg (X11) and log back in and ImageHorizonLibrary does work for me.
Just an FYI I'm encountering the same issue with my rfswarm builds, the issue seems to be specific to python 3.10 on MacOS Not sure how helpful this is but...
I tried adding the following to my github workflow: ``` # https://github.com/actions/setup-python/issues/649 - name: "MacOS Installs" if: ${{ matrix.platform == 'macos-latest' && matrix.python pyenv: version `3.10.12' not installed Error: Process...
The increase in file size was the reason I said it should be disabled by default, not desirable by default. My thought is just have a warning/note about the large...
Sounds good to me :+1:
I was more worried about testing with a 5.x and 4.x versions of RF, but if they are no longer supported versions it's easier to say there's no need to...
Yeah I think that would be helpful to be documented somewhere whether that's on the main site or in the user guide if that's easier.
Additional info for assessing severity: - test cases are not impacted (only the ugly errors in the log) - listener functions defined in the listener file work as expected Workaround:...
Alternate Workaround: Change mylistener.py to: ``` from robot.libraries.BuiltIn import BuiltIn class mylistener: ROBOT_LISTENER_API_VERSION = 3 def end_test(self, test, result): print(test.name) print(test.parent.metadata) ```
Ah I see where I went wrong now, I followed this example in the documentation: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#example-select-every-xth-test I didn't realize the difference between prerunmodifier and listeners. My eventual fix was to...