Code autoformatter for Robot Framework
Project description
Robotidy
Introduction
Robotidy is a tool for autoformatting Robot Framework code.
It is spiritual descendant of Robot Framework's internal robot.tidy package.
Documentation
Full documentation available here. :open_book:
Requirements
Python 3.7+ :snake: and Robot Framework 4.0.0+ :robot:.
Installation
You can install Robotidy simply by running:
pip install -U robotframework-tidy
Usage
Call robotidy with path(s) to file/directory with robot files:
robotidy tests
robotidy test.robot
robotidy tests/resources test.robot
All command line options can be displayed in help message by executing:
robotidy --help
See documentation for information how to configure robotidy.
Example
Ugly code before transforming with robotidy:
*** Settings ***
Force Tags tags tag2
Library Collections
Resource important.robot
Library MyCustomLibrary.py
Test Setup Setup Keyword
*** test case*
Test1
[ teardown] Teardown Keyword
Keyword
FOR ${var} IN RANGE 10
Run Keyword If ${var}>5 Other Keyword
END
*** Variables ***
${var}= 2
${bit_longer} 10
${var2} a
... b
*** Keywords ***
A lot prettier code after:
*** Settings ***
Library Collections
Library MyCustomLibrary.py
Resource important.robot
Test Setup Setup Keyword
Force Tags tags tag2
*** Variables ***
${var} 2
${bit_longer} 10
${var2} a
... b
*** Test Cases ***
Test1
Keyword
FOR ${var} IN RANGE 10
IF ${var}>5
Other Keyword
END
END
[Teardown] Teardown Keyword
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for robotframework-tidy-4.10.0a2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c15b0e5282bff78315d2e2e4a3c0d8ac9c3786db5059762c31ffad609aa452b0 |
|
MD5 | 18a1bf1fda9027429408b7f012b1a872 |
|
BLAKE2b-256 | 31e10ba369cead714bc052fe038f43387f975fcb6d6b3618fe8365d3a0b544ab |
Close
Hashes for robotframework_tidy-4.10.0a2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6421b46c1793fd3adb691cbc36dc888f1e9721a6402b210fb4069be5b4d5a2f |
|
MD5 | 7585d4629bc927005787140483539fe9 |
|
BLAKE2b-256 | d44484dd3ae48199a0663d50cfc8188a2db0c7ffaf0501b086f759c2098c9c49 |