fix integration tests failing (#5681)

* fix: make `#(extra_)requirements:` work better with pins

* fix(python): fix integration tests failing
This commit is contained in:
pyranota
2025-04-29 20:30:34 +02:00
committed by GitHub
parent 97957b5ec9
commit 29a48ff903
@@ -29,7 +29,15 @@ def main():
)
.await?;
// println!("{}", serde_json::to_string(&r)?);
assert_eq!(r, vec!["matplotlib", "wmill", "zanzibar"]);
assert_eq!(
r,
vec![
"matplotlib # (mapped from matplotlib.pyplot)",
"wmill",
"zanzibar # (mapped from zanzibar.estonie)"
]
);
Ok(())
}