-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from nevinera/nev-86--ignore-simplecov-output-…
…in-rspec-runs Update the Rspec::Parser to ignore simplecov output mixed into the rspec json
- Loading branch information
Showing
6 changed files
with
132 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module QuietQuality | ||
VERSION = "1.2.1" | ||
VERSION = "1.2.2" | ||
end |
45 changes: 45 additions & 0 deletions
45
spec/fixtures/tools/rspec/no-failures.with-simplecov-encoding-errors.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "3.12.2", | ||
"seed": 64304, | ||
"examples": [ | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:3:2]", | ||
"description": "calls standardrb correctly, with no targets", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full and contains too many ruby files calls standardrb correctly, with no targets", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 75, | ||
"run_time": 0.000185, | ||
"pending_message": null | ||
}, | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:1:1]", | ||
"description": "does not call standardrb", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full but contains no ruby files does not call standardrb", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 54, | ||
"run_time": 0.000125, | ||
"pending_message": null | ||
}, | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:2:2]", | ||
"description": "calls standardrb correctly, with changed and relevant targets", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full and contains some ruby files calls standardrb correctly, with changed and relevant targets", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 63, | ||
"run_time": 0.000148, | ||
"pending_message": null | ||
} | ||
], | ||
"summary": { | ||
"duration": 0.018751, | ||
"example_count": 3, | ||
"failure_count": 0, | ||
"pending_count": 0, | ||
"errors_outside_of_examples_count": 0 | ||
}, | ||
"summary_line": "89 examples, 0 failures" | ||
}Encoding problems with file foo.rb. Simplecov/ERB can't handle non ASCII characters in filenames. Error: Fake error. | ||
Encoding problems with file bar.rb. Simplecov/ERB can't handle non ASCII characters in filenames. Error: Fake error. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"version": "3.12.2", | ||
"seed": 64304, | ||
"examples": [ | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:3:2]", | ||
"description": "calls standardrb correctly, with no targets", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full and contains too many ruby files calls standardrb correctly, with no targets", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 75, | ||
"run_time": 0.000185, | ||
"pending_message": null | ||
}, | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:1:1]", | ||
"description": "does not call standardrb", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full but contains no ruby files does not call standardrb", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 54, | ||
"run_time": 0.000125, | ||
"pending_message": null | ||
}, | ||
{ | ||
"id": "./spec/quiet_quality/tools/standardrb/runner_spec.rb[1:1:4:2:2]", | ||
"description": "calls standardrb correctly, with changed and relevant targets", | ||
"full_description": "QuietQuality::Tools::Standardrb::Runner#invoke! when changed_files is full and contains some ruby files calls standardrb correctly, with changed and relevant targets", | ||
"status": "passed", | ||
"file_path": "./spec/quiet_quality/tools/standardrb/runner_spec.rb", | ||
"line_number": 63, | ||
"run_time": 0.000148, | ||
"pending_message": null | ||
} | ||
], | ||
"summary": { | ||
"duration": 0.018751, | ||
"example_count": 3, | ||
"failure_count": 0, | ||
"pending_count": 0, | ||
"errors_outside_of_examples_count": 0 | ||
}, | ||
"summary_line": "89 examples, 0 failures" | ||
}Coverage report generated for RSpec to /Users/emueller/src/quiet_quality/coverage. 1072 / 1072 LOC (100.0%) covered. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters