We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I would like to configurate multiple mappings for test_suite and test_case, for instance:
... "mappings": { "test_suite":[ { "key": "suite1", "name": "%fields.customfield_13050|default=unnamed%", "settings": { "resources": [ "../${RELATIVE_ROOT_PATH}init.robot" ], "suite_setup": [ "Init Suite Keyword" ], "test_setup": [ "Init Test Keyword" ], "test_teardown": [ "Teardown Keyword" ] } }, { "key": "suite2", "name": "%fields.customfield_13050|default=unnamed%", "settings": { "resources": [ "../${RELATIVE_ROOT_PATH}init2.robot" ] } } ]}
And use them maybe via an option on Jira?... is it possible to implement?
The text was updated successfully, but these errors were encountered:
Hi,
we used different configuration files within the project, but I will check if I can implement conditions.
Regards, Sven
Sorry, something went wrong.
I Figured it out!
{ "source": { "example1": { "type": "jira", ... }, "example2": { "type": "jira",
This is how the "keys" for configs and credentials are provided And then you just have to call robotizr twice
python -m robotizr -c ${PATH_TO_PROJECT}/config/robotizr-config.json ${HOME}/secure/private.json -s example1 -t ${PATH_TO_PROJECT}\cases --query "project = EXMAPLE AND type = example1" python -m robotizr -c ${PATH_TO_PROJECT}/config/robotizr-config.json ${HOME}/secure/private.json -s example2 -t ${PATH_TO_PROJECT}\cases --query "project = EXMAPLE AND type = example2"
skiera
No branches or pull requests
Hello,
I would like to configurate multiple mappings for test_suite and test_case, for instance:
And use them maybe via an option on Jira?... is it possible to implement?
The text was updated successfully, but these errors were encountered: