tests: drop serial_test

This commit is contained in:
Elijah McMorris 2024-12-17 13:58:52 -08:00
parent ee43aa0095
commit 6acdf2431c
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
3 changed files with 8 additions and 17 deletions

View file

@ -30,6 +30,5 @@ lazy_static = "1.4"
anyhow = "1.0"
[dev-dependencies]
serial_test = "3.1"
rstest = "0.23"
pretty_assertions = "1.4"

View file

@ -586,11 +586,9 @@ mod tests {
use super::*;
use crate::test_utils::*;
use pretty_assertions::assert_eq;
use serial_test::serial;
use std::fs;
#[test]
#[serial]
fn read_write_parquet() -> Result<(), Error> {
let test_df = defualt_df(&[Some("COIN")], &[Some("COINBASE")])?;
@ -603,7 +601,6 @@ mod tests {
}
#[test]
#[serial]
fn arkw_format_arkb() -> Result<(), Error> {
let test_df = defualt_df(
&[None::<&str>, Some("ARKB"), Some("ARKB")],
@ -631,7 +628,6 @@ mod tests {
}
#[test]
#[serial]
fn arkf_format_arkb() -> Result<(), Error> {
let test_df = defualt_df(
&[None::<&str>, Some("ARKB"), Some("ARKB")],

View file

@ -2,13 +2,11 @@ use anyhow::{Error, Result};
use chrono::NaiveDate;
use polars::datatypes::DataType;
use pretty_assertions::assert_eq;
use serial_test::serial;
use ark_invest_api_rust_data::util::ticker::Ticker;
use ark_invest_api_rust_data::util::*;
#[test]
#[serial]
fn get_api_arkk() -> Result<(), Error> {
let df = Ark::new(
Source::ApiIncremental,
@ -38,7 +36,6 @@ fn get_api_arkk() -> Result<(), Error> {
}
#[test]
#[serial]
fn get_api_format_arkk() -> Result<(), Error> {
let dfl = Ark::new(
Source::ApiIncremental,
@ -78,7 +75,6 @@ fn get_api_format_arkk() -> Result<(), Error> {
}
#[test]
#[serial]
fn get_api_format_arkvx() -> Result<(), Error> {
let dfl = Ark::new(
Source::ApiIncremental,