Bitvis / krem

Automation framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to KREM!

KREM is a very lightweight automation framework. KREM is also suitable for testing. KREM runs jobs made up of tasks executed in sequence, in parallel or a combination of both.

KREM is written in Python, but can execute scripts and programs written in any language.

We are continuously improving KREM. We want to keep KREM as lightweight and compact as possible, at the same time allowing extended functionality through a plugin interface.

We will provide some plugins, but anyone is more than welcome to contribute. Plugins can be found here: https://github.com/Bitvis/krem_plugins.git

KREM support Python 2.7 and 3.6 in Linux.

KREM in Windows is supported in Git Bash and Cygwin.

Please see the User Manual for more information docs/KREM_USER_MANUAL.md


Quick start guide

get KREM

git clone https://github.com/Bitvis/krem.git

install KREM

cd krem directory
./install.py
source ~/.bashrc

create a project

krem init –p project_foo
cd project_foo

create a job (from template)

krem init –j job_foo

create a task (from template)

krem init –t task_foo

run the job

krem run –j job_foo

list jobs

krem list –j

list tasks

krem list –t

We appreciate any feedback!

Enjoy!

About

Automation framework

License:GNU General Public License v3.0


Languages

Language:Python 99.5%Language:Shell 0.5%