From 9e2053127d67df1e06b88443c9f2584c24b6787d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Fri, 8 Nov 2024 11:41:15 +0100 Subject: [PATCH] Take TOML out of Python testing --- test/python/unittest/API/APITest.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/python/unittest/API/APITest.py b/test/python/unittest/API/APITest.py index 59e6b5c97e..4357768837 100644 --- a/test/python/unittest/API/APITest.py +++ b/test/python/unittest/API/APITest.py @@ -25,8 +25,10 @@ from TestUtilities.TestUtilities import generateTestFilePath tested_file_extensions = [ - ext for ext in io.file_extensions if ext != 'sst' and ext != 'ssc' -] + ext for ext in io.file_extensions + # TOML is relatively slow and it's just an adaptor for the JSON backend, + # so it doesn't require full testing + if ext !='sst' and ext !='ssc' and ext !='toml'] class APITest(unittest.TestCase):