From fd0b652482ce141c695436b629f460157cc449f8 Mon Sep 17 00:00:00 2001 From: Will Lachance Date: Tue, 3 May 2022 14:10:00 -0400 Subject: [PATCH] Benchmark load times for pandas and matplotlib too (#2465) --- benchmark/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index 69229acf6..c8336c8ad 100644 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -186,7 +186,7 @@ def main(): print_entry("selenium init", result) # package loading time - for package_name in ["numpy"]: + for package_name in ["numpy", "pandas", "matplotlib"]: result = {"native": float("NaN")} for browser_name, cls in browser_cls: selenium = cls(port, script_timeout=timeout)