Custom Fields From Zephyr Scale in Jira
I'm pretty new to this community and did some searching in the documentation / in this thread, but I may just not know the right words to search because I couldn't find anything...
Anyway, we have Zephyr Scale plugged into our Jira instance and I was trying to find out if / how you can customize the "Coverage" part of the integration in Jira to show a custom field. We have custom fields in Zephyr setup to show whether a test case has been automated and it would really help if we could see that easily in Jira.
The module I'm talking about is this one:
Thanks!
~John
This is why, as convenient as it is for constructing a suite of test cases quickly, I don't like using "Test Items" as the primary driver for what gets executed. You can't dynamically change things in code. Using an SQL data table, Excel spreadsheet, or CSV file to indicate the list of tests to execute is actually very flexible because then all you need to do is alter the file and click "run"... then your tests run. You could even have multiple copies of the file and, depending upon the configuration to run, you just drop in the necessary file or even have your code retrieve the file.
In very high level pseudo code, it could be something like this:
If configuration = US, then file_name = "US Test cases"
if configuration = Germany, then file_name = "Germany test cases"
ExecuteTests(file_name)