Skip to content

Commit

Permalink
More explicit tests skipping.
Browse files Browse the repository at this point in the history
  • Loading branch information
portnov committed Nov 10, 2024
1 parent 61dc7b1 commit 96e8b5f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/json_import_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,9 @@ def test_import_examples(self):
# assuming these are all jsons for now.
name = basename(path)

if name in UNITTEST_SKIPLIST:
sv_logger.info(f"Skipping test import of: {name} - the tree in the skip list")
continue

with self.subTest(file=name):
if name in UNITTEST_SKIPLIST:
self.skipTest("The tree in the skip list")
# info("Importing: %s", name)
with self.temporary_node_tree("ImportedTree") as new_tree:
# Do not try to process imported tree,
Expand Down

0 comments on commit 96e8b5f

Please sign in to comment.