Metadata-Version: 2.1
Name: robot_list
Version: 0.0.8
Summary: This is a package which lists the robot framework tests using robot command line arguments
Home-page: https://github.com/Venixa/robot_list
Author: Venixa Innovations
Author-email: venixainnovations@gmail.com
Project-URL: Bug Tracker, https://github.com/Venixa/robot_list/issues
Keywords: robot framework list,list robotframework tests,list robot
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: xmltodict ==0.13.0

# robot_list </br>
Do you want to list the testcases of a suite in robot framework before start execution? </br>
Here, is the solution for this. This package will perform the dry run on the command line which user is given and list all the tests. </br>
**Venixa Robot-List** </br>
List the robot tests by taking robot flags as cmd line arguments </br>

Usage: </br>
python -m robot_list.robot_list '--include test1 --exclude test2 tests/' </br>
python -m robot_list.robot_list '-i test1 -e test2 tests/' </br>
python -m robot_list.robot_list '--suite suite1 --test test1 tests/'  </br>
python -m robot_list.robot_list '-s suite1 -t test1* tests/' </br>
python -m robot_list.robot_list '--include test1 --exclude test2 --suite suite1 tests/' </br>
python -m robot_list.robot_list '-i test1 -e test2 -s suite1* tests/' </br>
 </br>
or </br> </br>

from robot_list import robot_list
robot_list = robot_list.RobotList(command) </br>
test_list = robot_list.list_robot_tests() </br>

