test_impact 0.2.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +541 -0
- data/exe/test-impact +6 -0
- data/lib/test_impact/cli.rb +156 -0
- data/lib/test_impact/collector/coverage_backend.rb +47 -0
- data/lib/test_impact/collector/ddcov_backend.rb +103 -0
- data/lib/test_impact/collector/null_backend.rb +22 -0
- data/lib/test_impact/config.rb +62 -0
- data/lib/test_impact/frameworks/rspec.rb +28 -0
- data/lib/test_impact/git.rb +125 -0
- data/lib/test_impact/map.rb +124 -0
- data/lib/test_impact/map_serializer.rb +88 -0
- data/lib/test_impact/path_matcher.rb +35 -0
- data/lib/test_impact/paths.rb +39 -0
- data/lib/test_impact/plan_result.rb +36 -0
- data/lib/test_impact/planner.rb +224 -0
- data/lib/test_impact/recorder.rb +112 -0
- data/lib/test_impact/version.rb +5 -0
- data/lib/test_impact.rb +28 -0
- data/skills/impacted-specs/SKILL.md +80 -0
- data/test_impact.gemspec +34 -0
- metadata +98 -0
metadata
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: test_impact
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- aki77
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: datadog-ci
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.20'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '2.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '1.20'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '2.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: thor
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.3'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.3'
|
|
46
|
+
description: Collects per-test coverage via datadog-ci's native extension and selects
|
|
47
|
+
impacted specs from git diff.
|
|
48
|
+
executables:
|
|
49
|
+
- test-impact
|
|
50
|
+
extensions: []
|
|
51
|
+
extra_rdoc_files: []
|
|
52
|
+
files:
|
|
53
|
+
- LICENSE.txt
|
|
54
|
+
- README.md
|
|
55
|
+
- exe/test-impact
|
|
56
|
+
- lib/test_impact.rb
|
|
57
|
+
- lib/test_impact/cli.rb
|
|
58
|
+
- lib/test_impact/collector/coverage_backend.rb
|
|
59
|
+
- lib/test_impact/collector/ddcov_backend.rb
|
|
60
|
+
- lib/test_impact/collector/null_backend.rb
|
|
61
|
+
- lib/test_impact/config.rb
|
|
62
|
+
- lib/test_impact/frameworks/rspec.rb
|
|
63
|
+
- lib/test_impact/git.rb
|
|
64
|
+
- lib/test_impact/map.rb
|
|
65
|
+
- lib/test_impact/map_serializer.rb
|
|
66
|
+
- lib/test_impact/path_matcher.rb
|
|
67
|
+
- lib/test_impact/paths.rb
|
|
68
|
+
- lib/test_impact/plan_result.rb
|
|
69
|
+
- lib/test_impact/planner.rb
|
|
70
|
+
- lib/test_impact/recorder.rb
|
|
71
|
+
- lib/test_impact/version.rb
|
|
72
|
+
- skills/impacted-specs/SKILL.md
|
|
73
|
+
- test_impact.gemspec
|
|
74
|
+
homepage: https://github.com/aki77/test_impact_analysis
|
|
75
|
+
licenses:
|
|
76
|
+
- MIT
|
|
77
|
+
metadata:
|
|
78
|
+
homepage_uri: https://github.com/aki77/test_impact_analysis
|
|
79
|
+
source_code_uri: https://github.com/aki77/test_impact_analysis
|
|
80
|
+
rubygems_mfa_required: 'true'
|
|
81
|
+
rdoc_options: []
|
|
82
|
+
require_paths:
|
|
83
|
+
- lib
|
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '3.3'
|
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
|
+
requirements:
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0'
|
|
94
|
+
requirements: []
|
|
95
|
+
rubygems_version: 4.0.13
|
|
96
|
+
specification_version: 4
|
|
97
|
+
summary: Test Impact Analysis for Ruby without Datadog backend
|
|
98
|
+
test_files: []
|