fix: ci test
Some checks failed
Test Agent / test (push) Failing after 1m0s

This commit is contained in:
2025-08-15 13:49:07 +09:00
parent 32a9ba5b78
commit c76fefe56b
2 changed files with 2 additions and 5 deletions

View File

@@ -39,8 +39,5 @@ jobs:
restore-keys: |
${{ runner.os }}-cargo-build-
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test

View File

@@ -11,5 +11,5 @@ pub fn run_qemu(config: &QemuConfig) {
.map(|s| s.to_string())
.collect();
let handle = Command::new(&config.executable).args(&args).spawn();
let _handle = Command::new(&config.executable).args(&args).spawn();
}