robotframework-tidy icon indicating copy to clipboard operation
robotframework-tidy copied to clipboard

Robot Framework code formatter

Results 63 robotframework-tidy issues
Sort by recently updated
recently updated
newest added

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.4.1 to 4.5.0. Commits e28ff12 chore(release): bump to 4.5.0 (#1477) 7594baa Use an existing token even if the PR is from a fork (#1471) 81c0a51 feat: add...

dependencies
github_actions

I often use the Run Keywords methods for Setup or Teardown, sometimes I need to disable part of the setup/teardown, and I like to do this by just commenting the...

Robot Framework has different assignment styles for the VAR syntax: `VAR ${variable} value` `VAR ${variable}= value` `VAR ${variable} = value` The ReplaceWithVAR transformer in Robotidy only supports the style without...

I have a testcase in which I use [Template] and a [Setup], like this example: Case One [Documentation] datadriven testcase via test-template [Setup] Log Setup console [Template] A Template Just...

The king is dead, long live.. Recently, ``ruff`` tool received a lot of popularity and is often replacing tools that were used so far - black, pylint, flake, isort.. ....

Hi, documentation states, that [Transformer configuration can contain spaces for better readability](ps://robotidy.readthedocs.io/en/stable/configuration/config_file.html#ignored-whitespace) and specifically mention OrderSettingsSection ``` [tool.robotidy] configure = [ "OrderSettingsSection: group_order = documentation,imports,settings,tags", "OrderSettingsSection: imports_order = library, resource,...

Hey! I'm getting the following error when trying to run `robotidy`: ```bash Error: Importing transformer 'GenerateDocumentation' failed. Verify if correct name or configuration was provided. ``` Versions: ```bash robotidy, version...

Apparently disabler `robotidy: off` does not work when applied on keyword arguments line. Here I tried to compensate for RenameVariable which misbehaving with the number variable `${1E-09}` used as a...

I recently decided to enable [RenameVariables ](https://robotidy.readthedocs.io/en/stable/transformers/RenameVariables.html)transformer and noticed it missed variables in the EXPECT arguments. BEFORE ![image](https://github.com/user-attachments/assets/89090eb8-8eee-4560-a469-7e616d281b06) AFTER ![image](https://github.com/user-attachments/assets/b920c829-2863-4bb7-aa61-3355d0031b48) Code to reproduce ```robot My Keyword [Arguments] ${expected error} TRY...