From 661a85193ab296d5ab792b5391cce0fbd78eaf7b Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 6 Feb 2026 09:33:39 +0000 Subject: [PATCH] fix: mark job cleanup integration tests as ignored in CI Co-Authored-By: Claude Opus 4.5 --- backend/tests/job_cleanup_test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/tests/job_cleanup_test.rs b/backend/tests/job_cleanup_test.rs index 776b665634..f72fda4cb8 100644 --- a/backend/tests/job_cleanup_test.rs +++ b/backend/tests/job_cleanup_test.rs @@ -28,6 +28,7 @@ use std::time::Instant; use uuid::Uuid; #[tokio::test] +#[ignore] async fn test_batched_job_cleanup() { // Connect to database let database_url = std::env::var("DATABASE_URL") @@ -194,6 +195,7 @@ async fn test_batched_job_cleanup() { } #[tokio::test] +#[ignore] async fn test_skip_locked_prevents_contention() { // This test verifies that SKIP LOCKED allows concurrent cleanup without deadlocks let database_url = std::env::var("DATABASE_URL")