Paweł Wiśniewski
Paweł Wiśniewski
it adds get_library_information that collects all data using functions that are already available.
To use `Should Contains` with bytes, item that is searched needs to be first converted to bytes. ```robot Test ${binaryVar} = Convert To Bytes \x00\x01\x02\xA0\xB0 Should Contain ${binary1Var} \xA0 ```...
to compare bytes returned from keyword it is necessary to create variable using Convert To Bytes and then compare using `Should be equal` ```robot *** Keywords *** Keyword returning bytes...
Currently output from `Should be Equal` as well as `Should Contain` for bytes is not useful. Consider following tests: ```robot *** Test Cases *** Test Should be Equal ${binary1Var} =...
it is not possible to build package from Source Distribution on pypi (https://pypi.org/project/fastapi-websocket-rpc/#files) error from setuptools: ` FileNotFoundError: [Errno 2] No such file or directory: 'requirements.txt'` your setup.py is reading...
I think uvicorn could be removed from requirements as it add unneeded dependencies on client side. fastapi package can be used with uvicorn but doesn't add explicit dependency to it....
**Is your enhancement request related to a problem? Please describe.** when keyword has Literal as argument I would like to have value suggestions when writing test. example: Library: ```python from...
## What is your suggestion? update ubuntu to jammy 22.04 or add it as second image ## Why do you want this feature? it contains new version for many packages...
Adds new ubuntu release as base image #6709
currently schema is defined inside fusesoc/capi2/json_schema.py as a multi line string variable. to use schema outside fusesoc it would be easier to have it as standard JSON file. Use case:...