__init__.py 945 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. # -------------------------------------------------------------------------
  9. """! @brief
  10. <DCCsi>/azpy/test/__init__.py
  11. A lightweight entrytest and debugging module (Wing only currently)
  12. """
  13. # -------------------------------------------------------------------------
  14. from pathlib import Path
  15. import logging as _logging
  16. # -------------------------------------------------------------------------
  17. # global scope
  18. from DccScriptingInterface.azpy import _PACKAGENAME
  19. _PACKAGENAME = f'{_PACKAGENAME}.test'
  20. __all__ = ['entry_test']
  21. _LOGGER = _logging.getLogger(_PACKAGENAME)
  22. _LOGGER.debug('Initializing: {0}.'.format({_PACKAGENAME}))
  23. _MODULE_PATH = Path(__file__)
  24. _LOGGER.debug(f'_MODULE_PATH: {_MODULE_PATH}')
  25. __all__ = ['entry_test']