We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5d5067 commit 2f1a5acCopy full SHA for 2f1a5ac
crates/core/tests/checkpoint_writer.rs
@@ -10,10 +10,12 @@ mod simple_checkpoint {
10
use parquet::file::reader::{FileReader, SerializedFileReader};
11
use pretty_assertions::assert_eq;
12
use regex::Regex;
13
+ use serial_test::serial;
14
use std::fs::{self, File};
15
use std::path::{Path, PathBuf};
16
17
#[tokio::test]
18
+ #[serial]
19
async fn simple_checkpoint_test() {
20
let table_location = "../test/tests/data/checkpoints";
21
let table_path = PathBuf::from(table_location);
@@ -63,6 +65,7 @@ mod simple_checkpoint {
63
65
}
64
66
67
68
69
async fn checkpoint_run_length_encoding_test() {
70
71
0 commit comments