From 8497d5473c885216f4e2af5c8f5fe4f77bbbb521 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:57:10 +0100 Subject: [PATCH] Skip unstable example in CI (#1357) Example 06-distributed-stress-averaging currently causes the CI to be very unstable. To be investigated. --- .ci/run_examples.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/run_examples.py b/.ci/run_examples.py index b0fd5c8dfb..58d4881df1 100644 --- a/.ci/run_examples.py +++ b/.ci/run_examples.py @@ -26,6 +26,9 @@ for file in glob.iglob(os.path.join(subdir, "*.py")): if sys.platform == "linux" and "08-python-operators" in file: continue + elif "win" in sys.platform and "06-distributed_stress_averaging" in file: + # Currently very unstable in the GH CI + continue print("\n--------------------------------------------------") print(file) minimum_version_str = get_example_required_minimum_dpf_version(file)