I had thought this was related to the wrong files ending up in the bundle, but I was mistaken.
20 lines
550 B
Python
20 lines
550 B
Python
# SPDX-FileCopyrightText: 2020 Jeff Epler
|
|
# SPDX-FileCopyrightText: Copyright (c) 2020 jepler for Unpythonic Networks
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# pylint: disable=missing-module-docstring,missing-function-docstring,unused-argument
|
|
import unittest
|
|
import doctest
|
|
import jepler_udecimal
|
|
import jepler_udecimal.utrig
|
|
|
|
|
|
def load_tests(loader, tests, ignore):
|
|
tests.addTests(doctest.DocTestSuite(jepler_udecimal))
|
|
tests.addTests(doctest.DocTestSuite(jepler_udecimal.utrig))
|
|
return tests
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|