mirror of https://github.com/astral-sh/ruff
Add debug logs?
This commit is contained in:
parent
0112f7f0e4
commit
540cbd9085
|
|
@ -350,6 +350,7 @@ jobs:
|
||||||
NEXTEST_PROFILE: "ci"
|
NEXTEST_PROFILE: "ci"
|
||||||
# Workaround for <https://github.com/nextest-rs/nextest/issues/1493>.
|
# Workaround for <https://github.com/nextest-rs/nextest/issues/1493>.
|
||||||
RUSTUP_WINDOWS_PATH_ADD_BIN: 1
|
RUSTUP_WINDOWS_PATH_ADD_BIN: 1
|
||||||
|
RED_KNOT_LOG: debug
|
||||||
run: |
|
run: |
|
||||||
cargo nextest run --all-features --profile ci
|
cargo nextest run --all-features --profile ci
|
||||||
cargo test --all-features --doc
|
cargo test --all-features --doc
|
||||||
|
|
|
||||||
|
|
@ -919,6 +919,9 @@ fn directory_renamed() -> anyhow::Result<()> {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn directory_deleted() -> anyhow::Result<()> {
|
fn directory_deleted() -> anyhow::Result<()> {
|
||||||
|
use ruff_db::testing::setup_logging;
|
||||||
|
let _logging = setup_logging();
|
||||||
|
|
||||||
let mut case = setup([
|
let mut case = setup([
|
||||||
("bar.py", "import sub.a"),
|
("bar.py", "import sub.a"),
|
||||||
("sub/__init__.py", ""),
|
("sub/__init__.py", ""),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue