Method: Jenkins2API::Endpoint::Job#get_test_results
- Defined in:
- lib/endpoints/job.rb
#get_test_results(name, build_id) ⇒ Object
Get test results “alias” Why? Because jenkins1 api gem uses this logic Why? I don’t know.
Params:
name
-
Name of the Job
build_id
-
ID of the build
20 21 22 |
# File 'lib/endpoints/job.rb', line 20 def get_test_results(name, build_id) @client.build.test_results(name, build_id) end |