We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94a3a8f commit 67c95fcCopy full SHA for 67c95fc
1 file changed
test/python/unittest/API/APITest.py
@@ -25,8 +25,10 @@
25
from TestUtilities.TestUtilities import generateTestFilePath
26
27
tested_file_extensions = [
28
- ext for ext in io.file_extensions if ext != 'sst' and ext != 'ssc'
29
-]
+ ext for ext in io.file_extensions
+ # 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']
32
33
34
class APITest(unittest.TestCase):
0 commit comments