Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions mobile_packet_verifier/tests/integrations/banning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use mobile_packet_verifier::banning::{get_banned_radios, handle_verified_ban_rep
use sqlx::PgPool;

#[sqlx::test]
#[ignore]
async fn extremities_of_banning(pool: PgPool) -> anyhow::Result<()> {
const EPOCH_LENGTH: i64 = 60 * 60 * 24;
let epoch = chrono::Utc::now().timestamp() / EPOCH_LENGTH;
Expand Down Expand Up @@ -99,7 +98,6 @@ async fn extremities_of_banning(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn ban_unban(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let key = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -156,7 +154,6 @@ async fn ban_unban(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn past_ban_future_unban(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let key = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -219,7 +216,6 @@ async fn past_ban_future_unban(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn past_poc_ban_future_data_ban(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let key = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -285,7 +281,6 @@ async fn past_poc_ban_future_data_ban(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn new_ban_replaces_old_ban(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let key = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -323,7 +318,6 @@ async fn new_ban_replaces_old_ban(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn expired_bans_are_not_used(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let expired_hotspot_pubkey = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -382,7 +376,6 @@ async fn expired_bans_are_not_used(pool: PgPool) -> anyhow::Result<()> {
}

#[sqlx::test]
#[ignore]
async fn unverified_requests_are_not_written_to_db(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;
let hotspot_pubkey = PublicKeyBinary::from(vec![1]);
Expand Down Expand Up @@ -417,7 +410,6 @@ async fn unverified_requests_are_not_written_to_db(pool: PgPool) -> anyhow::Resu
}

#[sqlx::test]
#[ignore]
async fn bans_outside_of_rewardable_period_are_not_used(pool: PgPool) -> anyhow::Result<()> {
let mut conn = pool.acquire().await?;

Expand Down
1 change: 0 additions & 1 deletion mobile_packet_verifier/tests/integrations/burn_metric.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use sqlx::{types::Uuid, PgPool};
use crate::common::TestMobileConfig;

#[sqlx::test]
#[ignore]
async fn burn_metric_reports_0_after_successful_accumulate_and_burn(
pool: PgPool,
) -> anyhow::Result<()> {
Expand Down