A CLI tool for uploading Robot Framework test results to rflogs.io
Project description
rflogs CLI
rflogs
is a command-line interface tool for uploading and managing Robot Framework test results with the RF Logs service. It provides an easy way to integrate RF Logs with your CI/CD pipelines or local development workflow.
Installation
Install rflogs
using pipx (recommended) or pip:
pipx install rflogs
or
pip install rflogs
Usage
Authentication
rflogs
uses an API key for authentication. Set your RF Logs API key as an environment variable:
export RFLOGS_API_KEY=your_api_key_here
You can add this line to your shell configuration file (e.g., .bashrc
, .zshrc
) to make it permanent.
Tagging Runs
You can associate tags with your test runs to categorize and filter them. Tags can be specified using the --tag
or -t
option when uploading results.
Tag Format
- Key-Value Tags:
key:value
- Simple Tags:
tag
Constraints
-
Tag Keys:
- Must start with a letter (a-z, A-Z).
- Length: 1 to 50 characters.
- Allowed Characters: Letters, numbers, underscores (
_
), hyphens (-
), dots (.
). - Case-Insensitive:
Env
andenv
are considered the same key.
-
Tag Values:
- Length: 1 to 100 characters.
- Allowed Characters: Letters, numbers, spaces, underscores (
_
), hyphens (-
), dots (.
), slashes (/
). - Case-Sensitive.
Examples
# Valid Tags
rflogs upload -t env:production -t browser:chrome -t regression
# Invalid Tag Key (starts with a number)
rflogs upload -t 1env:production # Will produce an error
# Invalid Tag Value (contains invalid character '@')
rflogs upload -t env:prod@ction # Will produce an error
Uploading Test Results
Upload test results after running your Robot Framework tests:
rflogs upload [OUTPUTDIR]
OUTPUTDIR
: Optional. Specifies the location of the test output files. Default is the current directory.- The command does not perform a recursive search.
This command will:
- Find relevant test result files (log.html, report.html, output.xml, and screenshots) in the specified directory
- Compress output.xml using tar.gz
- Upload all files to the RF Logs server
- Provide a link to view the uploaded results
Example output:
$ rflogs upload ./results
Uploading results
output.xml 1.20 MB - compressed to 800.00 KB ✓
log.html 256.00 KB ✓
report.html 128.00 KB ✓
screenshot1.png 45.00 KB ✓
screenshot2.png 52.00 KB ✓
Run ID: 1234abcd
Files: 5
Size: 1.28 MB
Overview: https://rflogs.io/runs/1234abcd
Log: https://rflogs.io/runs/1234abcd/log.html
Report: https://rflogs.io/runs/1234abcd/report.html
Listing Uploads
View your recent uploads:
rflogs list
Example output:
$ rflogs list
Available runs:
1234abcd
5678efgh
90ijklmn
To view details of a specific run, use: rflogs info <run_id>
View Upload Details
Get details about a specific result:
rflogs info <run_id>
Example output:
$ rflogs info 1234abcd
Run ID: 1234abcd
Files: 5
- log.html (ID: 1)
- report.html (ID: 2)
- output.xml (ID: 3)
- screenshot1.png (ID: 4)
- screenshot2.png (ID: 5)
Downloading Test Results
Download test results to your local machine:
rflogs download <run_id>
This command downloads all files associated with the specified test result to your current directory.
Example output:
$ rflogs download 1234abcd
Downloaded log.html
Downloaded report.html
Downloaded output.xml
Downloaded screenshot1.png
Downloaded screenshot2.png
Deleting a Test Run
To delete a specific run:
rflogs delete <run_id>
This command will immediately delete the specified run and its associated files from the server.
Integration with CI/CD Systems
GitHub Actions
To integrate rflogs
with GitHub Actions, add the following step to your workflow:
- name: Upload Robot Framework results
env:
RFLOGS_API_KEY: ${{ secrets.RFLOGS_API_KEY }}
run: |
pipx install rflogs
rflogs upload ./results
Make sure to set the RFLOGS_API_KEY
secret in your GitHub repository settings.
Other CI/CD Systems
For other CI/CD systems:
- Install the RF Logs CLI tool in your CI environment
- Set the
RFLOGS_API_KEY
environment variable - Run
rflogs upload
with the appropriate output directory
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 rflogs-0.17.0.tar.gz
.
File metadata
- Download URL: rflogs-0.17.0.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb2678c6d2051b44f5a49445c04a04542e680a1c9919f3112f3ce2b02f6416e8 |
|
MD5 | 1570c4b398391a4325b65e4ed17ed09b |
|
BLAKE2b-256 | f58ee1001698a369c21597cf7bbc0b1cce1c626bcc3cfbdc077bcb83b33c39d2 |
Provenance
File details
Details for the file rflogs-0.17.0-py3-none-any.whl
.
File metadata
- Download URL: rflogs-0.17.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f9156d7f298cf93b5a1eaa4bb5a642dea0d14cfa19af4142cea2e995fd91ab0 |
|
MD5 | e4f2fc45db5a20cc47f5b2d21b0d7911 |
|
BLAKE2b-256 | 745f9d4357b855020fe89a0a928e14380af91cd8dff279bd55d30a4ec5a56732 |