We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c448c8 commit 37f58c0Copy full SHA for 37f58c0
3 files changed
doc/DataDriver.html
src/DataDriver/DataDriver.py
@@ -49,7 +49,7 @@
49
warn,
50
)
51
52
-__version__ = "1.8.1"
+__version__ = "1.9.0"
53
54
55
class DataDriver:
src/DataDriver/argument_utils.py
@@ -21,10 +21,13 @@ def robot_options():
21
env_options="ROBOT_OPTIONS",
22
23
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']
+ try:
+ options = BuiltIn().get_variable_value(name='${options}')
+ if options is not None:
+ cli_args['include'] = options['include']
28
+ cli_args['exclude'] = options['exclude']
29
+ except Exception:
30
+ pass
31
return cli_args
32
33
0 commit comments