Add debug logs?

This commit is contained in:
Zanie Blue 2025-01-22 10:25:44 -06:00
parent 0112f7f0e4
commit 540cbd9085
2 changed files with 4 additions and 0 deletions

View File

@ -350,6 +350,7 @@ jobs:
NEXTEST_PROFILE: "ci"
# Workaround for <https://github.com/nextest-rs/nextest/issues/1493>.
RUSTUP_WINDOWS_PATH_ADD_BIN: 1
RED_KNOT_LOG: debug
run: |
cargo nextest run --all-features --profile ci
cargo test --all-features --doc

View File

@ -919,6 +919,9 @@ fn directory_renamed() -> anyhow::Result<()> {
#[test]
fn directory_deleted() -> anyhow::Result<()> {
use ruff_db::testing::setup_logging;
let _logging = setup_logging();
let mut case = setup([
("bar.py", "import sub.a"),
("sub/__init__.py", ""),