Updated automations endpoints to support file uploads and removed dup route #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces changes to the
lib/zephyr_ruby/resource/automations.rb
andlib/zephyr_ruby/resource/test_executions.rb
files to enhance functionality and remove redundant methods. The most important changes include adding an optionalfile_path
parameter to automation creation methods and removing an unnecessary method from test executions.Enhancements to automation methods:
lib/zephyr_ruby/resource/automations.rb
: Added an optionalfile_path
parameter to thecreate_automation_custom
,create_automation_cucumber
, andcreate_automation_junit
methods to allow file paths to be passed during automation creation.Simplification of test execution methods:
lib/zephyr_ruby/resource/test_executions.rb
: Removed theget_test_execution_links
method as it is no longer needed, simplifying the codebase.