From 29a48ff9035ea176823f3976bb6ada14e2bf9d5c Mon Sep 17 00:00:00 2001 From: pyranota <92104930+pyranota@users.noreply.github.com> Date: Tue, 29 Apr 2025 20:30:34 +0200 Subject: [PATCH] fix integration tests failing (#5681) * fix: make `#(extra_)requirements:` work better with pins * fix(python): fix integration tests failing --- .../parsers/windmill-parser-py-imports/tests/tests.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/backend/parsers/windmill-parser-py-imports/tests/tests.rs b/backend/parsers/windmill-parser-py-imports/tests/tests.rs index d734cb8ead..9fee9b21c9 100644 --- a/backend/parsers/windmill-parser-py-imports/tests/tests.rs +++ b/backend/parsers/windmill-parser-py-imports/tests/tests.rs @@ -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(()) }