Skip to content

Commit 37f58c0

Browse files
committed
Release 1.9.0
Signed-off-by: Rene <snooz@posteo.de>
1 parent 7c448c8 commit 37f58c0

3 files changed

Lines changed: 40 additions & 30 deletions

File tree

doc/DataDriver.html

Lines changed: 32 additions & 25 deletions
Large diffs are not rendered by default.

src/DataDriver/DataDriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
warn,
5050
)
5151

52-
__version__ = "1.8.1"
52+
__version__ = "1.9.0"
5353

5454

5555
class DataDriver:

src/DataDriver/argument_utils.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ def robot_options():
2121
env_options="ROBOT_OPTIONS",
2222
)
2323
cli_args = arg_parser.parse_args(filter_args(arg_parser))[0]
24-
options = BuiltIn().get_variable_value(name='${options}')
25-
if options is not None:
26-
cli_args['include'] = options['include']
27-
cli_args['exclude'] = options['exclude']
24+
try:
25+
options = BuiltIn().get_variable_value(name='${options}')
26+
if options is not None:
27+
cli_args['include'] = options['include']
28+
cli_args['exclude'] = options['exclude']
29+
except Exception:
30+
pass
2831
return cli_args
2932

3033

0 commit comments

Comments
 (0)