Skip to content

Commit 67c95fc

Browse files
Take TOML out of Python testing (#1694)
1 parent 94a3a8f commit 67c95fc

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

test/python/unittest/API/APITest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@
2525
from TestUtilities.TestUtilities import generateTestFilePath
2626

2727
tested_file_extensions = [
28-
ext for ext in io.file_extensions if ext != 'sst' and ext != 'ssc'
29-
]
28+
ext for ext in io.file_extensions
29+
# TOML is relatively slow and it's just an adaptor for the JSON backend,
30+
# so it doesn't require full testing
31+
if ext != 'sst' and ext != 'ssc' and ext != 'toml']
3032

3133

3234
class APITest(unittest.TestCase):

0 commit comments

Comments
 (0)