Skip to content

Commit

Permalink
Release 1.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Rene <[email protected]>
  • Loading branch information
Snooz82 committed Jul 27, 2023
1 parent 7c448c8 commit 37f58c0
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 30 deletions.
57 changes: 32 additions & 25 deletions doc/DataDriver.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/DataDriver/DataDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
warn,
)

__version__ = "1.8.1"
__version__ = "1.9.0"


class DataDriver:
Expand Down
11 changes: 7 additions & 4 deletions src/DataDriver/argument_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ def robot_options():
env_options="ROBOT_OPTIONS",
)
cli_args = arg_parser.parse_args(filter_args(arg_parser))[0]
options = BuiltIn().get_variable_value(name='${options}')
if options is not None:
cli_args['include'] = options['include']
cli_args['exclude'] = options['exclude']
try:
options = BuiltIn().get_variable_value(name='${options}')
if options is not None:
cli_args['include'] = options['include']
cli_args['exclude'] = options['exclude']
except Exception:
pass
return cli_args


Expand Down

0 comments on commit 37f58c0

Please sign in to comment.