Skip to content

Releases: gregoil/rotest

v8.3.2

17 Sep 08:44
c443bc1

Choose a tag to compare

Fixed recursive unpacking input validation

v8.3.1

16 Sep 13:18
5ddf220

Choose a tag to compare

Added support for block input validation when using resource unpacking

v8.3.0

20 May 16:24
22583a9

Choose a tag to compare

Enable unpacking resources (adding also the sub-resources to the test's dict)
Syntax: ResourceClass.request().unpack()

Issue: blocks input validation still doesn't consider unpacked subresources

v8.2.1

19 Mar 15:08
fbb5192

Choose a tag to compare

Removed redundant dependency on pywin32

v8.2.0

18 Mar 15:42
bfb31d6

Choose a tag to compare

Enabled starting and stopping monitors manually with designated blocks:

from rotest.core.utils.useful_blocks import StartMonitorBlock, StopMonitorBlock
...
blocks = [
StartMonitorBlock.params(monitor_name='my_monitor'), # Supply monitor name
StartMonitorBlock.params(monitor_class=MyMonitorClass), # Alternatively supply class
StopMonitorBlock, # Optional, otherwise monitors die when the main flow ends
]

v8.1.1

27 Feb 12:44
905434a

Choose a tag to compare

Fixed bug: 'name' parameter to blocks/flow raises a 'not recognized input' error

v8.1.0

05 Feb 12:47
3131a3e

Choose a tag to compare

  • Enable sending data from sub-data when requesting sub-resources (r=Resource.request(data=MyData.sub.field)
  • Added (back) the DataPointer class, that implements this behavior under the hood. It can also be used by itself (r=Resource.request(field=DataPointer("my_data_field_name"))
  • Updated docs accordingly

v8.0.4

30 Jan 11:57
be47e98

Choose a tag to compare

  • fixed statistic UT failure - replaced queue with manager.queue
  • added core log as artifact of failed builds
  • minor doc fixes

v8.0.3

26 Jan 12:21

Choose a tag to compare

docs and builds fixes

v8.0.2

19 Jan 12:08
bf34f27

Choose a tag to compare

  • Tutorial doc fixes
  • Added default DJANGO_SETTINGS_MODULE and a warning when using it
  • Fixed current block pointer after finishing a flow