From f5630614fb021fcc684840d59620b7d0ffdaf64d Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Mon, 15 May 2023 23:05:41 +0200 Subject: [PATCH] add minimal to the e2e test (catches 2fast2flush race) --- scripts/run_python_e2e_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_python_e2e_test.py b/scripts/run_python_e2e_test.py index 977d1c7bd0a1..86ccf44e4883 100755 --- a/scripts/run_python_e2e_test.py +++ b/scripts/run_python_e2e_test.py @@ -43,6 +43,7 @@ def main() -> None: requirements = [ "examples/python/api_demo/requirements.txt", "examples/python/car/requirements.txt", + "examples/python/minimal/requirements.txt", "examples/python/multithreading/requirements.txt", "examples/python/plots/requirements.txt", "examples/python/text_logging/requirements.txt", @@ -61,6 +62,7 @@ def main() -> None: # Trivial examples that don't require weird dependencies, or downloading data ("examples/python/api_demo/main.py", ["--demo", "all"]), ("examples/python/car/main.py", []), + ("examples/python/minimal/main.py", []), ("examples/python/multithreading/main.py", []), ("examples/python/plots/main.py", []), ("examples/python/text_logging/main.py", []),