itriagetestrail 1.0.37 → 1.0.38

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a927ef4f85a9058c7d17084cac8c03668fa17d90df3318ab949bcd3932a803b4
4
- data.tar.gz: 6634d6233ed3c6b2caace7b4d833612b91ee97ba149bf86406113218f46b6e7b
3
+ metadata.gz: 316ef8566e9b3a1eb558d8a78ce5b9968fd787f26ea0c3054fe5fa85eff4675a
4
+ data.tar.gz: f22e0a3b34ff051d5163315521b0a88c355a061a4e83feee595de4e031657a65
5
5
  SHA512:
6
- metadata.gz: ed2c8d459a7694bd2d94eee1012dbe8a90ee7411dee169fd4296977fd1172c30ea232b46e90919035446566cf55cb9129c2574fe172974be29827f7631a95e7d
7
- data.tar.gz: 2f8be67b65870ecf836058f31d12d4f2fbff1123b48bb73f199c9f850506849bd967f84eea86739add2a7617b502cdd3face28c713faa1b9f784d20559e0f930
6
+ metadata.gz: 68ec66a8b3ea432fd12a9c6edcbb99e74389b254c7b2334f4dc16e608871c7fb3f830268d7d2acfe35f7a8b6588e8e140f402cae892b1b133859634c76617cdb
7
+ data.tar.gz: 1d76726f8cdbb942748de2847eab6bf763c39c23832bc3ffc9dd1673f74129fc2805a530ef180b4a6acd8a1ed48b8a1210c5710f35ea1035bec22e3911de0b0d
@@ -18,10 +18,10 @@ module Itriagetestrail
18
18
 
19
19
  # In implementations where there is not an at_exit, parallel test threads can store results
20
20
  # of tests from the completed test class into a batch file, so final processing sends all results
21
- # at the very end of the job while avoiding rate limiting issues.
21
+ # at the very end of the job while avoiding rate limiting issues. Each row is a separate json.
22
22
  def store_results_to_batch_file
23
23
  return if @results[:results].empty?
24
- entry = {runId: @run_id, results: @results[:results]}
24
+ entry = {runId: @run_id, results: @results[:results]}.to_json
25
25
 
26
26
  Dir.mkdir('./tmp') unless File.exist?('./tmp')
27
27
  file = File.open("./tmp/batch", 'a')
@@ -53,7 +53,7 @@ module Itriagetestrail
53
53
  run_id = nil
54
54
  results = []
55
55
  File.open("./tmp/batch").each do |line|
56
- content = eval(line)
56
+ content = JSON.parse(line)
57
57
  unless run_id
58
58
  run_id = content[:runId]
59
59
  end
@@ -1,3 +1,3 @@
1
1
  module Itriagetestrail
2
- VERSION = '1.0.37'.freeze
2
+ VERSION = '1.0.38'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itriagetestrail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.37
4
+ version: 1.0.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - a801069