Skip to content

Commit

Permalink
fix(test): Skip micropython tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinci1it2000 committed Apr 8, 2020
1 parent cbf4550 commit d28f8b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_micropython.py
Expand Up @@ -9,7 +9,7 @@


# noinspection PyTypeChecker
def make_test_suite():
def _make_suite():
from .utils.test_dsp import (
TestDispatcherUtils, TestSubDispatcher, TestSubDispatchFunction,
TestSubDispatchPipe, TestDispatchPipe
Expand Down Expand Up @@ -47,7 +47,7 @@ def make_test_suite():
os.environ['EXTRAS'] = os.environ.get('EXTRAS', 'micropython')

runner = unittest.TestRunner()
result = runner.run(make_test_suite())
result = runner.run(_make_suite())

# noinspection PyUnresolvedReferences
sys.exit(result.failuresNum > 0)

0 comments on commit d28f8b1

Please sign in to comment.