gurock / trcli

TR CLI (trcli) is a command line tool for interacting with TestRail.
Mozilla Public License 2.0
48 stars 39 forks source link

fixed the character limit issue for custom_automation_id #229

Closed Naveenkumar-Iyyappan closed 1 month ago

Naveenkumar-Iyyappan commented 2 months ago

Issue being resolved:

Testrail String data type doesn't accept more than 250 characters so trimmed the custom_automation_id to 128 chars

Solution description

By trimming the value to 128 characters

Changes

What changes where made? Just added a line to trim the custom_automation_id to 128 characters

Potential impacts

What could potentially be affected by the implemented changes?

Steps to test

Happy path to test implemented scenario

PR Tasks

Naveenkumar-Iyyappan commented 2 months ago

when integrating the cli to testrail i found that the custom_automation_id is exceeding the char limit. So trimmed the custom_automation_id down to 128 chars

bitcoder commented 2 months ago

Hi, first thanks your effort. The automation_id should be of type Text, as detailed in the documentation. Therefore, the proper way to handle it is to use the correct type for the field. Thanks anyway

bitcoder commented 1 month ago

Hi, first thanks your effort. The automation_id should be of type Text, as detailed in the documentation. Therefore, the proper way to handle it is to use the correct type for the field. Thanks anyway

closing the the PR due to the previous feedback