Create and run automations python scripts
Project description
Fruit is an automation framework written in python.
Configuration
Fruit, when installed via pip, can be called via the command fruit from the terminal.
Targets
Targets are entry points of the fruit make process. They may be executed with the command fruit make <target> from the command line.
Each target may consist of multiple steps or even multiple sub targets. Each of these elemts will be automatically detected during the execution of a target. All sub targets and steps will be automatically listed and added to the result tracking of the called target.
To create a new target, use the decorator @fruit.target().
The following example will create a target with the name build and an empty help text.
@fruit.target()
def build():
pass
The name and the help text of the target can be overwritten by using the argumetns name and help of @fruit.target().
# Create a target with the name 'build-new'
@fruit.target(name='build-new', help='Build a new castle')
def build():
pass
The target results will be generated during the target execution process and the results will be shown after target is finished. May the target process be aborted, the results will show the unsuccessful execution with the proper error message.
Steps
Steps are the parts of targets and they serve diagnostic purposes and ease the generation of detailed reports. They are not mandatory to define, but the provide nice diagnostics and cli output for longer processes.
Steps can be created by using the decorator @fruit.step(). The step name will be the name of the decorated function by default but it can be overwritten by the argument name.
# Create a step called step1 without help text
@fruit.step()
def step1():
pass
# Create a step called 'GIT version' with help text
@fruit.step(name='GIT version', help='Get the current version of the GIT repo')
def step2():
pass
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
File details
Details for the file fruit-0.3.5.tar.gz
.
File metadata
- Download URL: fruit-0.3.5.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3029cd2e64f6897b2b32c3e347493972305be4c4afcd17f813c6cd261ce5a97 |
|
MD5 | 9297c2fb2d589568010ca8d851088d33 |
|
BLAKE2b-256 | 1215778136ba74420fdc7d71959647bd8b59481d7b95df42f49381e8207218c4 |
File details
Details for the file fruit-0.3.5-py3-none-any.whl
.
File metadata
- Download URL: fruit-0.3.5-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d89c16f0a4d05879b219925fa14ad991b47de49c8bfcd43cf0e252527d4b4625 |
|
MD5 | 956dbb332a414b96f0a4c70434461ad7 |
|
BLAKE2b-256 | 678fa75c0f373024254a05bcd2d29cf97b47ead78d87edf1b7a459d217a06605 |