itriagetestrail 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/itriagetestrail/version.rb +1 -1
- data/lib/itriagetestrail.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37354a24f76563c54aaf05d70968b1fb0a184c87
|
4
|
+
data.tar.gz: 20562ed68449a21836ae2ac734c5317274b74628
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df128f0b945c093d32b7929257f04e46cbb947356046264619c62a281538b4883017b3795d21ac8af055d3a1ac9b72a60f8ba431d0729fcfc4d50f637b8c26c1
|
7
|
+
data.tar.gz: fa8d7e49560c7b5c6a8ace53853722bd5fda1a84a6d5a63cd81e179689d577ab18eab959b03309b4516f960b70bbef96a89b2252204d2bdfa32da2b1faafba13
|
data/lib/itriagetestrail.rb
CHANGED
@@ -699,7 +699,9 @@ module Itriagetestrail
|
|
699
699
|
|
700
700
|
def close_run(run_id = @run_id, message='')
|
701
701
|
@client.send_post("update_run/#{run_id}",
|
702
|
-
{include_all: false, case_ids: existing_cases_from_run
|
702
|
+
{include_all: false, case_ids: existing_cases_from_run(run_id),
|
703
|
+
description: 'Timestamp: ' + @time_zone.now.strftime('%m/%d/%Y %I:%M %p') +
|
704
|
+
("\nBranch: #{@testrail_config[:origin]}") + "\n#{message}"})
|
703
705
|
|
704
706
|
@client.send_post("close_run/#{run_id}", {})
|
705
707
|
end
|