learn-test 1.2.22 → 1.2.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/learn-test +4 -0
- data/lib/learn_test/jasmine/runner.rb +7 -6
- data/lib/learn_test/python_unittest/runner.rb +7 -2
- data/lib/learn_test/rspec/runner.rb +8 -2
- data/lib/learn_test/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 382ed4a3f59b801020ce6c917bf776d45a8bfc03
|
4
|
+
data.tar.gz: 0ab9f2fc5238b6c29311103fc46cfc5a17673dc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a93db12f8ab4906ee4ea38a37c280670217d679ed28877c969992ced2812d25d8f9be0e53ceef80ae83451a641aab7ca182004058154ac122f32ab02fcbbcca
|
7
|
+
data.tar.gz: 4fca55b40207b46dda23f69b2997132bd977e428b9c99b8580e2684294312487c530feb49f0ae32255ea122a25b4f287417690828a16d2989bfa493bb95d50df
|
data/bin/learn-test
CHANGED
@@ -6,7 +6,7 @@ require 'json'
|
|
6
6
|
module LearnTest
|
7
7
|
module Jasmine
|
8
8
|
class Runner
|
9
|
-
attr_reader :no_color, :local, :browser, :conn, :color_opt, :out
|
9
|
+
attr_reader :no_color, :local, :browser, :conn, :color_opt, :out, :keep_results
|
10
10
|
attr_accessor :json_results
|
11
11
|
|
12
12
|
def self.run(username, user_id, repo_name, options)
|
@@ -20,6 +20,7 @@ module LearnTest
|
|
20
20
|
@local = !!options[:local]
|
21
21
|
@browser = !!options[:browser]
|
22
22
|
@out = options[:out]
|
23
|
+
@keep_results = options[:keep]
|
23
24
|
@json_results = {
|
24
25
|
username: username,
|
25
26
|
github_user_id:user_id,
|
@@ -73,8 +74,9 @@ module LearnTest
|
|
73
74
|
set_passing_test_count
|
74
75
|
end
|
75
76
|
|
76
|
-
if out
|
77
|
-
|
77
|
+
if out || keep_results
|
78
|
+
output_file = out ? out : '.results.json'
|
79
|
+
write_json_output(output_file: output_file)
|
78
80
|
end
|
79
81
|
end
|
80
82
|
|
@@ -82,8 +84,8 @@ module LearnTest
|
|
82
84
|
json_results[:passing_count] = json_results[:tests] - json_results[:failures] - json_results[:errors]
|
83
85
|
end
|
84
86
|
|
85
|
-
def write_json_output
|
86
|
-
File.open(
|
87
|
+
def write_json_output(output_file:)
|
88
|
+
File.open(output_file, 'w+') do |f|
|
87
89
|
f.write(json_results.to_json)
|
88
90
|
end
|
89
91
|
end
|
@@ -126,4 +128,3 @@ module LearnTest
|
|
126
128
|
end
|
127
129
|
end
|
128
130
|
end
|
129
|
-
|
@@ -2,7 +2,7 @@ module LearnTest
|
|
2
2
|
module PythonUnittest
|
3
3
|
class Runner
|
4
4
|
attr_accessor :parsed_output, :json_output, :formatted_results
|
5
|
-
attr_reader :username, :user_id, :repo_name, :options, :connection
|
5
|
+
attr_reader :username, :user_id, :repo_name, :options, :connection, :keep_results
|
6
6
|
|
7
7
|
def initialize(username, user_id, repo_name, options)
|
8
8
|
@username = username
|
@@ -12,6 +12,7 @@ module LearnTest
|
|
12
12
|
@json_output = ""
|
13
13
|
@parsed_output = nil
|
14
14
|
@formatted_results = {}
|
15
|
+
@keep_results = !!options.delete('--keep')
|
15
16
|
@connection = Faraday.new(url: SERVICE_URL) do |faraday|
|
16
17
|
faraday.adapter Faraday.default_adapter
|
17
18
|
end
|
@@ -28,6 +29,10 @@ module LearnTest
|
|
28
29
|
end
|
29
30
|
end
|
30
31
|
|
32
|
+
def keep_results?
|
33
|
+
keep_results
|
34
|
+
end
|
35
|
+
|
31
36
|
def run_nose
|
32
37
|
system("nosetests #{options.join(' ')} --verbose --with-json --json-file='./.results.json'")
|
33
38
|
end
|
@@ -81,7 +86,7 @@ module LearnTest
|
|
81
86
|
end
|
82
87
|
|
83
88
|
def cleanup
|
84
|
-
FileUtils.rm('.results.json')
|
89
|
+
FileUtils.rm('.results.json') unless keep_results?
|
85
90
|
end
|
86
91
|
end
|
87
92
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module LearnTest
|
2
2
|
module RSpec
|
3
3
|
class Runner
|
4
|
-
attr_accessor :parsed_output, :json_output, :formatted_results
|
4
|
+
attr_accessor :parsed_output, :json_output, :formatted_results, :keep_results
|
5
5
|
attr_reader :username, :user_id, :repo_name, :options, :connection
|
6
6
|
|
7
7
|
def initialize(username, user_id, repo_name, options)
|
@@ -52,6 +52,8 @@ module LearnTest
|
|
52
52
|
options.delete("-t")
|
53
53
|
options.delete("-l")
|
54
54
|
options.delete("--local")
|
55
|
+
|
56
|
+
self.keep_results = !!options.delete('--keep')
|
55
57
|
end
|
56
58
|
|
57
59
|
def read_dot_rspec
|
@@ -113,7 +115,11 @@ module LearnTest
|
|
113
115
|
end
|
114
116
|
|
115
117
|
def cleanup
|
116
|
-
FileUtils.rm('.results.json')
|
118
|
+
FileUtils.rm('.results.json') unless keep_results?
|
119
|
+
end
|
120
|
+
|
121
|
+
def keep_results?
|
122
|
+
keep_results
|
117
123
|
end
|
118
124
|
end
|
119
125
|
end
|
data/lib/learn_test/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: learn-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Flatiron School
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|