Skip to content

Commit

Permalink
Add trivial unittest test to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Dec 4, 2024
1 parent cb3ff70 commit 636946e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import importlib
import unittest

class ImportTest(unittest.TestCase):

def test_import(self):
"""
This test serves to make the buildfarm happy in Python 3.12 and later.
See https://github.com/colcon/colcon-core/issues/678 for more information.
"""
assert importlib.util.find_spec("py_trees")

0 comments on commit 636946e

Please sign in to comment.