Disablers¶
Rules and formatters can be disabled directly from Robot Framework code. You can use special directives as a comment.
Use the following directives to disable linting:
To disable formatting, use the following directives:
The keyword may optionally have specified rules or formatters, separated by comma:
The disablers are also context-aware, meaning that they turn off the Robocop rules for the related code block. E.g. keyword, test case, or even for loops and if statements.
Note
The disablers are similar to how # noqa comment works for most linters.
Disabling lines¶
It is possible to disable the rule or formatter for a particular line or lines:
In this example no message will be printed for this line for rule named rule1 and no formatting changes
will be applied by FormatterName formatter.
You can disable all rules and formatters with:
Enabling back¶
Ignore whole blocks of code by defining a disabler in the new line:
Enable it again with on command:
or:
Disabling code blocks¶
Ignored blocks can partly overlap. Rule name and rule id can be used interchangeably.
The disabler is aware of the context where it was called, and it will be enabled again at the end of the current code
block (such as keyword, test case, "for" and "while" loops and "if" statement). In the following example,
wrong-case-in-keyword-name disabler will disable the rule only inside the "for" loop.
*** Keywords ***
Compare Table With CSV Files
[Arguments] ${table} @{files}
${data} Get Data From Table ${table}
FOR ${file} IN @{files}
# robocop: off=wrong-case-in-keyword-name
Table data should be in file ${data} ${file}
END
Should Be Equal ${erorrs} @{EMPTY}
# robocop: off=wrong-case-in-keyword-name disabler can be also used in the FOR loop header and it will be applied
for the whole loop:
FOR ${file} IN @{files} # robocop: off=wrong-case-in-keyword-name
Table data should be in file ${data} ${file}
END
Disabling files¶
It is possible to ignore a whole file if you put Robocop disabler in the first comment section, at the beginning of the file.
# robocop: off=missing-doc-test-case
*** Test Cases ***
Some Test
Keyword 1
Keyword 2
Keyword 3
*** Keywords ***
Keyword 1 # robocop: off
Log 1
Keyword 2
Log 2
# robocop: off
Keyword 3
Log 3
Keyword 4
Log 4
# robocop: on
In this example we are disabling missing-doc-test-case rule in the whole file.
Also, we are disabling all rules inside Keyword 1 keyword and all lines between
Keyword 3 and Keyword 4 keywords.