![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
python package providing Robot Framework integration with Jira Test Management (tm4j) Cloud
Package providing Robot Framework listener for TM4J Cloud integration.
python setup.py sdist
# PyPi
pip install tm4j-reporter-robot
# Git
pip install git+ssh://git@github.com:Klika-Tech/tm4j_reporter_robot.git
In order to use Robot Framework TM4J listener, it should be installed to the same PYTHONPATH as Robot Framework itself.
Listener requires arguments below to be passed:
Param | Mandatory | Environment variable name | Description | Type | Example |
---|---|---|---|---|---|
tm4j_access_key | Yes | TM4J_ACCESS_KEY | API key to access TM4j. To get it see Instruction | str | |
tm4j_project_key | Yes | TM4J_PROJECT_KEY | Jira / TM4J project prefix without trailing dash | str | QT |
parallel_execution_flag | No | TM4J_PARALLEL_EXECUTION_SUPPORT | Flag to mark parallel execution. False by default | boolean | true |
path_to_shared_test_cycle_key_file | No | TM4J_SHARED_TEST_CYCLE_KEY_FILE_PATH | Path to TM4J test cycle key shared file (used to handle parallel test execution). Deault value is {os_tempdir}/TEST_CYCLE_KEY | str | /my_folder/my_test_cycle_key_file |
tm4j_test_cycle_name | No | TM4J_TEST_CYCLE_NAME | TM4J test cycle name. If not passed, listener will create a new one test cycle with default name "Robot run YYYY-mm-DD HH-MM-SS" | str | My test cycle |
Listener will try to get attribute value from environment variables first, and if attribute is not set as environment variable - will look up to command line parameter.
You can set all or required only attributes as environment variables, so no need to pass them into command line:
export TM4J_ACCESS_KEY=<my_access_key>
export TM4J_PROJECT_KEY=QT
With that you can pass only non-required attributes to customize your test run:
pabot --processes 4 --listener tm4j_reporter_robot.TM4JRobotListener:::true:/my_user/temp/my_tc_key:"My custom test cycle name" tests/
If needed, you can set all arguments as environment variables, so command line will be simply short:
# setting the rest of variables
export TM4J_PARALLEL_EXECUTION_SUPPORT=true
export TM4J_SHARED_TEST_CYCLE_KEY_FILE_PATH=/my_user/temp/my_tc_key
export TM4J_TEST_CYCLE_NAME="My custom test cycle name"
# running tests
pabot --processes 4 --listener tm4j_reporter_robot.TM4JRobotListener tests/
While running Robot Framework, pass TM4JRobotListener
as value for --listener
argument, along with access and project keys:
robot --listener tm4j_reporter_robot.TM4JRobotListener:<tm4j_access_key>:<tm4j_project_key>:<parallel_execution_flag>:<path_to_shared_test_cycle_key_file>:<tm4j_test_cycle_name> test.robot
Example: running without parallel execution with custom test cycle name
robot --listener tm4j_reporter_robot.TM4JRobotListener:my_access_key:QT:::"My custom test cycle name" test.robot
Example: parallel execution with pabot
and cleanup before run
rm -rf /my_user/temp/my_tc_key*
pabot --processes 4 --listener tm4j_reporter_robot.TM4JRobotListener:my_access_key:QT:true:/my_user/temp/my_tc_key:"My custom test cycle name" tests/
In order to listener reported test execution to TM4J, mark Robot test case with tag TM4J:<tm4j_test_case_key>
:
My Robot Test Case
[Tags] Some tag 1 Some tag 2 TM4J:QT-001
test code goes here
For parallel execution with e.g. pabot
, you need to set parallel execution flag to true
.
Listener uses synchronization through shared file for test cycle key and lock file - so only one process \ thread will create TM4J test cycle for execution, write its key into a shared file, and all other processes \ threads read test cycle key from it.
Unfortunately, Robot API doesn't have any methods that called before or after ALL executions, so you need to delete shared test cycle key file and lock file manually after run. The best way is to create some pre-execution script (similar to example above) that will do this cleanup for you.
IMPORTANT: If you not delete those files, your next run will report test executions into previously created TM4J test cycle.
Raised by listener if test is not tagged with TM4J test case key:
tm4j_reporter_api.tm4j_exceptions.tm4j_configuration_exceptions.TM4JConfigurationException: Test case key is not found in list of tags. Please mark robot test with tag 'TM4J:<test_case_key>'.
Library provides possibility to set TM4J test cycle description with special keyword Set Tm4j Test Cycle Description
.
Import library first, use keyword after:
*** Settings ***
Library tm4j_reporter_robot.TM4JCycleDescriptor
Suite Setup Setting Cycle Description
*** Keywords ***
Setting Cycle Description
Set Tm4j Test Cycle Description My test cycle description
Keyword is in global scope, so only one instance is created during the whole test execution and it is shared by all test cases and test suites.
FAQs
python package providing Robot Framework integration with Jira Test Management (tm4j) Cloud
We found that tm4j-reporter-robot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.