diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5d698b45..44bfeaba 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,4 +19,4 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --verbose --test-threads 1 --skip test_window_loop + run: cargo test --verbose -- --test-threads 1 diff --git a/.gitignore b/.gitignore index 6fb8b962..23d87b57 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ **/target **/resources -**/assets \ No newline at end of file +**/assets +*.db \ No newline at end of file diff --git a/src/window_system.rs b/src/window_system.rs index fd4c5638..e159db0b 100644 --- a/src/window_system.rs +++ b/src/window_system.rs @@ -590,6 +590,7 @@ mod tests { assert_ne!(os_handles.xcb_window, 0); } + #[ignore] #[test] fn test_window_loop() { let mut window_system = WindowSystem::new();