# test.robot
# This is a mock
*** Settings ***
Resource path/to/xyz.resource
# ^^^^^^^^^^^^^^^^^^^^ Unused import statement
*** Keywords ***
Set To Dictionary &{kwargs} ANSIBLE_DEBUG=1
or Unused import statement:
# test.robot
# This is a mock
*** Settings ***
# Resource path/to/xyz.resource
*** Keywords ***
Set To Dictionary &{kwargs} ANSIBLE_DEBUG=1
# ^^^^^^^^^^^^^^^^^ Keyword not found
Disclaimer: May be related to #213
On a file, I have
and, in the test, I get
Keyword not found
:or
Unused import statement
: