From 1c0c5cd714637d1ce76006503b63b3c9e1b02abe Mon Sep 17 00:00:00 2001
From: zphrs <z@zephiris.dev>
Date: Sat, 15 Mar 2025 14:28:09 -0700
Subject: [PATCH] further clarification on benchmarks

---
 __main__.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/__main__.py b/__main__.py
index 0206572..bd8360a 100755
--- a/__main__.py
+++ b/__main__.py
@@ -95,12 +95,13 @@ TEST_SET.extend(BASIC_TESTS)
 TEST_SET.extend(AVAILABILITY_TESTS)
 TEST_SET.extend(CAUSAL_TESTS)
 TEST_SET.extend(CONVERGENCE_TESTS)
-# ... to here can  be run in parallel. 
+# ... to here can be run in parallel.
 # Below here should be run synchronously:
 TEST_SET.extend(PROXY_TESTS)
 TEST_SET.extend(SHUFFLE_TESTS)
 TEST_SET.extend(STRESS_TESTS)
-# This one is less of a test and more a graphing program:
+# This one is less of a test and more a graphing program
+# (absolutely CANNOT be run in parallel thanks to matplotlib):
 TEST_SET.extend(BENCHMARKS)
 
 # set to True to stop at the first failing test
-- 
GitLab