mutation_tester 1.5.0 → 1.6.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/docs/ci.md +31 -0
- data/docs/execution-runners.md +23 -0
- data/docs/json-schema.md +44 -0
- data/examples/github_actions/ai_mutation_gate.yml +1 -1
- data/examples/github_actions/mutation_test.yml +1 -1
- data/examples/github_actions/redundant_tests.yml +77 -0
- data/exe/mutation_test +11 -1
- data/lib/mutation_tester/batch_runner.rb +3 -2
- data/lib/mutation_tester/configuration.rb +3 -1
- data/lib/mutation_tester/core.rb +37 -9
- data/lib/mutation_tester/fork_runner/worker.rb +4 -2
- data/lib/mutation_tester/fork_runner.rb +5 -4
- data/lib/mutation_tester/minitest_fail_fast.rb +3 -5
- data/lib/mutation_tester/minitest_load_hook.rb +35 -0
- data/lib/mutation_tester/mutation_runner.rb +50 -37
- data/lib/mutation_tester/progress_display.rb +134 -30
- data/lib/mutation_tester/reporters/base_reporter.rb +2 -1
- data/lib/mutation_tester/reporters/batch_json_reporter.rb +2 -1
- data/lib/mutation_tester/reporters/console_reporter.rb +1 -0
- data/lib/mutation_tester/reporters/json_reporter.rb +7 -0
- data/lib/mutation_tester/test_command.rb +60 -30
- data/lib/mutation_tester/test_recorder/minitest_hook.rb +55 -0
- data/lib/mutation_tester/test_recorder/rspec_hook.rb +62 -0
- data/lib/mutation_tester/test_recorder.rb +75 -0
- data/lib/mutation_tester/version.rb +1 -1
- data/lib/mutation_tester.rb +1 -0
- data/readme.md +421 -538
- metadata +7 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutation_tester
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kamil Dzierbicki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|
|
@@ -153,6 +153,7 @@ files:
|
|
|
153
153
|
- examples/calculator_spec.rb
|
|
154
154
|
- examples/github_actions/ai_mutation_gate.yml
|
|
155
155
|
- examples/github_actions/mutation_test.yml
|
|
156
|
+
- examples/github_actions/redundant_tests.yml
|
|
156
157
|
- examples/hooks/pre-push
|
|
157
158
|
- examples/run_example.rb
|
|
158
159
|
- examples/run_example_minitest.rb
|
|
@@ -170,6 +171,7 @@ files:
|
|
|
170
171
|
- lib/mutation_tester/framework_detector.rb
|
|
171
172
|
- lib/mutation_tester/in_memory_loader.rb
|
|
172
173
|
- lib/mutation_tester/minitest_fail_fast.rb
|
|
174
|
+
- lib/mutation_tester/minitest_load_hook.rb
|
|
173
175
|
- lib/mutation_tester/mutation_runner.rb
|
|
174
176
|
- lib/mutation_tester/mutator.rb
|
|
175
177
|
- lib/mutation_tester/progress_display.rb
|
|
@@ -181,6 +183,9 @@ files:
|
|
|
181
183
|
- lib/mutation_tester/reporters/html_reporter.rb
|
|
182
184
|
- lib/mutation_tester/reporters/json_reporter.rb
|
|
183
185
|
- lib/mutation_tester/test_command.rb
|
|
186
|
+
- lib/mutation_tester/test_recorder.rb
|
|
187
|
+
- lib/mutation_tester/test_recorder/minitest_hook.rb
|
|
188
|
+
- lib/mutation_tester/test_recorder/rspec_hook.rb
|
|
184
189
|
- lib/mutation_tester/version.rb
|
|
185
190
|
- lib/tasks/mutation_tester.rake
|
|
186
191
|
- readme.md
|