This project contains libraries for common system testing functionality to be used with Robot Framework
To run system tests using this library you will need
For developing libraries
The libraries are installable as a package robot_support
via pip + git
pip install git+https://github.com/RainThief/robot-test-libraries.git
Run robot framework via cli. For detailed usage please see user guide
robot --loglevel INFO ./<test dir>/*.robot
Instead of installing this package into your project containing your app to be tested, you can mount your project into the robot support container
docker run --rm -it \
-v <project dir>:/usr/app \
-v /var/run/docker.sock:/var/run/docker.sock \
--network=host \
docker.pkg.github.com/rainthief/robot-test-libraries/robot_testing:latest \
robot --loglevel INFO ./<test dir>/*.robot
In development you can install this library for usage with your new features by installing from your feature branch i.e.
pip install git+https://github.com/RainThief/robot-test-libraries.git@<branch name>
Github actions CI workflows
Robot support Python package. The code and libraries for this project.
Checks third party dependencies for
- Compatible licenses
- Security vulnerabilities
- Updated versions
Example output
+==============================================================================+
| |
| /$$$$$$ /$$ |
| /$$__ $$ | $$ |
| /$$$$$$$ /$$$$$$ | $$ \__//$$$$$$ /$$$$$$ /$$ /$$ |
| /$$_____/ |____ $$| $$$$ /$$__ $$|_ $$_/ | $$ | $$ |
| | $$$$$$ /$$$$$$$| $$_/ | $$$$$$$$ | $$ | $$ | $$ |
| \____ $$ /$$__ $$| $$ | $$_____/ | $$ /$$| $$ | $$ |
| /$$$$$$$/| $$$$$$$| $$ | $$$$$$$ | $$$$/| $$$$$$$ |
| |_______/ \_______/|__/ \_______/ \___/ \____ $$ |
| /$$ | $$ |
| | $$$$$$/ |
| by pyup.io \______/ |
| |
+==============================================================================+
| REPORT |
| checked 34 packages, using default DB |
+==============================================================================+
| No known security vulnerabilities found. |
+==============================================================================+
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 303 100 303 0 0 1109 0 --:--:-- --:--:-- --:--:-- 1105
Name Version License
python-dateutil 2.8.1 Dual License
licence checker warning
PLEASE REVIEW LICENSES LISTED ABOVE
Security audit passed
Example output
linting python
linting bash
linting dockerfile
Static analysis passed
Example output
collected 12 items
util/test_file.py .. [100%]
===================== 12 passed in 2.29s ===========================