Skip to content

Commit 8386b14

Browse files
author
Test User
committed
test: ignore debug tests in CI environment
1 parent 526e569 commit 8386b14

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

tests/debug_filesystem_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use test_constants::config;
99

1010
#[test]
1111
#[serial]
12+
#[ignore = "Debug test for manual filesystem operations - not suitable for CI"]
1213
fn test_debug_filesystem_operations() -> Result<()> {
1314
let temp_dir = TempDir::new()?;
1415
let repo_path = temp_dir.path();

tests/debug_rename_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use test_constants::config;
1010

1111
#[test]
1212
#[serial]
13+
#[ignore = "Debug test for manual rename operations - not suitable for CI"]
1314
fn test_rename_worktree_debug() -> Result<()> {
1415
let temp_dir = TempDir::new()?;
1516
let repo_path = temp_dir.path();

tests/rename_debug_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use test_constants::config;
1010

1111
#[test]
1212
#[serial]
13+
#[ignore = "Debug test for rename operations - not suitable for CI"]
1314
fn test_rename_worktree_debug_repair() -> Result<()> {
1415
let temp_dir = TempDir::new()?;
1516
let repo_path = temp_dir.path();

tests/rename_manual_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use test_constants::config;
99

1010
#[test]
1111
#[serial]
12+
#[ignore = "Manual test for rename operations - not suitable for CI"]
1213
fn test_manual_rename_approach() -> Result<()> {
1314
let temp_dir = TempDir::new()?;
1415
let repo_path = temp_dir.path();

tests/trace_rename_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use test_constants::config;
99

1010
#[test]
1111
#[serial]
12+
#[ignore = "Trace test for debugging rename operations - not suitable for CI"]
1213
fn test_trace_rename_execution() -> Result<()> {
1314
let temp_dir = TempDir::new()?;
1415
let repo_path = temp_dir.path();

0 commit comments

Comments
 (0)