Skip to content

Commit

Permalink
Take TOML out of Python testing (#1694)
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel authored Nov 8, 2024
1 parent 94a3a8f commit 67c95fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/python/unittest/API/APITest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 67c95fc

Please sign in to comment.