Skip to content

Commit 35f0674

Browse files
committed
rip out old chunks parser
1 parent 70fa498 commit 35f0674

File tree

6 files changed

+462
-2422
lines changed

6 files changed

+462
-2422
lines changed

core/benches/pyreport.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::collections::HashMap;
22

33
use codecov_rs::{
4-
parsers::pyreport::{chunks_serde, report_json},
4+
parsers::pyreport::{chunks, report_json},
55
test_utils::test_report::TestReportBuilder,
66
};
77
use criterion::{criterion_group, criterion_main, Criterion};
@@ -104,5 +104,5 @@ fn complex_chunks(c: &mut Criterion) {
104104

105105
fn parse_chunks_file_serde(input: &[u8], report_json: report_json::ParsedReportJson) {
106106
let report_builder = TestReportBuilder::default();
107-
chunks_serde::parse_chunks_file(input, report_json, report_builder).unwrap();
107+
chunks::parse_chunks_file(input, report_json, report_builder).unwrap();
108108
}

core/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use thiserror::Error;
22

3-
use crate::parsers::pyreport::chunks_serde::ChunksFileParseError;
3+
use crate::parsers::pyreport::chunks::ChunksFileParseError;
44

55
pub type Result<T, E = CodecovError> = std::result::Result<T, E>;
66

0 commit comments

Comments
 (0)