v3.1.8
Integration with Allure framework
Now it's possible to generate reports in a format that is compatible with Allure framework. History of test runs is also supported.
New feature: "variables"
Sometimes it's may be useful to retreive some information from inside of the guest and use it in visual selectors. For example let's assume we need to know a kernel's version. We can pass this information from the guest to the host via guest additions:
exec bash """
testo-guest-additions-cli set KERNEL_VERSION `uname -r`
"""
After that we can use this information in wait
action:
wait "Kernel version is $<KERNEL_VERSION>"
In this case we call KERNEL_VERSION a variable because (unlike the parameters) its value is unknown in advance. For the same reason the syntax of string interpolation for variables is different from the syntax for parameters.
ARM64 support
Testo-lang interpreter supports both x86 and arm64 architectures. Testo NN-server still supports only x86.
Other changes
- GPU id can be specified in the NN-server config
- Some perfomance improvements