├── .gitignore ├── .landscape.yml ├── .travis.yml ├── Doxyfile ├── LICENSE ├── README.md ├── config ├── config_linux.json ├── config_windows.json └── logging.ini ├── generateDocs.sh ├── python └── assetQC │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── assetInstance.py │ ├── baseDataObject.py │ ├── baseTestObject.py │ ├── collector.py │ ├── config.py │ ├── context.py │ ├── fixer.py │ ├── lib.py │ ├── logger.py │ ├── register.py │ ├── reporter.py │ ├── status.py │ ├── utils.py │ └── validator.py │ └── cmd │ ├── __init__.py │ └── assetQC.py ├── runTests.bat ├── runTests.sh └── tests └── test ├── __init__.py ├── api_tests ├── __init__.py ├── test_assetInstance.py ├── test_collector.py ├── test_config.py ├── test_context.py ├── test_fixer.py ├── test_lib.py ├── test_logger.py ├── test_register.py ├── test_reporter.py ├── test_status.py ├── test_utils.py └── test_validator.py ├── baseLib.py ├── data └── config │ ├── config.json │ ├── config_linux.json │ └── config_windows.json ├── mayaAssets ├── __init__.py ├── anim │ ├── __init__.py │ ├── animCollector.py │ └── animInstance.py ├── camera │ ├── __init__.py │ ├── cameraCollector.py │ ├── cameraFilmbackFixer.py │ ├── cameraFilmbackValidator.py │ ├── cameraInstance.py │ ├── cameraKeyframeCountValidator.py │ ├── cameraPivotFixer.py │ ├── cameraPivotValidator.py │ ├── cameraRenderableFixer.py │ └── cameraRenderableValidator.py ├── geometry │ ├── __init__.py │ ├── geometryCollector.py │ └── geometryInstance.py ├── mayaInstance.py ├── rig │ ├── __init__.py │ ├── rigCollector.py │ ├── rigInstance.py │ └── rigValidator.py ├── shader │ ├── __init__.py │ ├── shaderCollector.py │ └── shaderInstance.py └── texture │ ├── __init__.py │ ├── textureCollector.py │ ├── textureInstance.py │ └── textureValidator.py ├── mayaReporters ├── __init__.py ├── assignShadersReporter.py └── viewportRenderReporter.py ├── mayaUtils.py ├── runMayaTests.py ├── runTests.py ├── standardAssets ├── __init__.py ├── camera │ ├── __init__.py │ ├── cameraCollector.py │ ├── cameraFilmbackFixer.py │ ├── cameraFilmbackValidator.py │ ├── cameraInstance.py │ └── cameraKeyframeCountValidator.py ├── geometry │ ├── __init__.py │ ├── geometryCollector.py │ ├── geometryInstance.py │ └── geometryShapeValidator.py ├── imageSequence │ ├── __init__.py │ ├── imageSequenceCollector.py │ ├── imageSequenceFileExistsValidator.py │ └── imageSequenceInstance.py └── standardInstance.py ├── standardReporters ├── __init__.py ├── consolePrintReporter.py └── emailSummaryReporter.py ├── standardUtils.py ├── test_overall.py └── ui ├── __init__.py └── mayaUI.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | docs 3 | temp 4 | assetqc.log 5 | .coverage 6 | .idea -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/.travis.yml -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/README.md -------------------------------------------------------------------------------- /config/config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/config/config_linux.json -------------------------------------------------------------------------------- /config/config_windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/config/config_windows.json -------------------------------------------------------------------------------- /config/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/config/logging.ini -------------------------------------------------------------------------------- /generateDocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/generateDocs.sh -------------------------------------------------------------------------------- /python/assetQC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/__init__.py -------------------------------------------------------------------------------- /python/assetQC/api/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | API Module. 3 | """ -------------------------------------------------------------------------------- /python/assetQC/api/assetInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/assetInstance.py -------------------------------------------------------------------------------- /python/assetQC/api/baseDataObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/baseDataObject.py -------------------------------------------------------------------------------- /python/assetQC/api/baseTestObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/baseTestObject.py -------------------------------------------------------------------------------- /python/assetQC/api/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/collector.py -------------------------------------------------------------------------------- /python/assetQC/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/config.py -------------------------------------------------------------------------------- /python/assetQC/api/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/context.py -------------------------------------------------------------------------------- /python/assetQC/api/fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/fixer.py -------------------------------------------------------------------------------- /python/assetQC/api/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/lib.py -------------------------------------------------------------------------------- /python/assetQC/api/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/logger.py -------------------------------------------------------------------------------- /python/assetQC/api/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/register.py -------------------------------------------------------------------------------- /python/assetQC/api/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/reporter.py -------------------------------------------------------------------------------- /python/assetQC/api/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/status.py -------------------------------------------------------------------------------- /python/assetQC/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/utils.py -------------------------------------------------------------------------------- /python/assetQC/api/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/api/validator.py -------------------------------------------------------------------------------- /python/assetQC/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Commands Module. 3 | """ -------------------------------------------------------------------------------- /python/assetQC/cmd/assetQC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/python/assetQC/cmd/assetQC.py -------------------------------------------------------------------------------- /runTests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/runTests.bat -------------------------------------------------------------------------------- /runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/runTests.sh -------------------------------------------------------------------------------- /tests/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/__init__.py -------------------------------------------------------------------------------- /tests/test/api_tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Unit tests for the API. 3 | """ -------------------------------------------------------------------------------- /tests/test/api_tests/test_assetInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_assetInstance.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_collector.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_config.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_context.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_fixer.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_lib.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_logger.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_register.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_reporter.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_status.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_utils.py -------------------------------------------------------------------------------- /tests/test/api_tests/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/api_tests/test_validator.py -------------------------------------------------------------------------------- /tests/test/baseLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/baseLib.py -------------------------------------------------------------------------------- /tests/test/data/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/data/config/config.json -------------------------------------------------------------------------------- /tests/test/data/config/config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/data/config/config_linux.json -------------------------------------------------------------------------------- /tests/test/data/config/config_windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/data/config/config_windows.json -------------------------------------------------------------------------------- /tests/test/mayaAssets/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Maya Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/anim/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Animation Curve Asset Plugins. 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/anim/animCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/anim/animCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/anim/animInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/anim/animInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Camera Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraFilmbackFixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraFilmbackFixer.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraFilmbackValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraFilmbackValidator.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraKeyframeCountValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraKeyframeCountValidator.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraPivotFixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraPivotFixer.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraPivotValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraPivotValidator.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraRenderableFixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraRenderableFixer.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/camera/cameraRenderableValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/camera/cameraRenderableValidator.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Geometry Asset Plugins. 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/geometry/geometryCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/geometry/geometryCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/geometry/geometryInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/geometry/geometryInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/mayaInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/mayaInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/rig/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Rig Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/rig/rigCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/rig/rigCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/rig/rigInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/rig/rigInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/rig/rigValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/rig/rigValidator.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/shader/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Shader Asset Plugins. 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/shader/shaderCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/shader/shaderCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/shader/shaderInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/shader/shaderInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/texture/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Texture Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaAssets/texture/textureCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/texture/textureCollector.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/texture/textureInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/texture/textureInstance.py -------------------------------------------------------------------------------- /tests/test/mayaAssets/texture/textureValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaAssets/texture/textureValidator.py -------------------------------------------------------------------------------- /tests/test/mayaReporters/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Reporters of QC, only for Autodesk Maya. 3 | """ -------------------------------------------------------------------------------- /tests/test/mayaReporters/assignShadersReporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaReporters/assignShadersReporter.py -------------------------------------------------------------------------------- /tests/test/mayaReporters/viewportRenderReporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaReporters/viewportRenderReporter.py -------------------------------------------------------------------------------- /tests/test/mayaUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/mayaUtils.py -------------------------------------------------------------------------------- /tests/test/runMayaTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/runMayaTests.py -------------------------------------------------------------------------------- /tests/test/runTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/runTests.py -------------------------------------------------------------------------------- /tests/test/standardAssets/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Maya Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Camera Asset Plugins 3 | """ -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/cameraCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/camera/cameraCollector.py -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/cameraFilmbackFixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/camera/cameraFilmbackFixer.py -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/cameraFilmbackValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/camera/cameraFilmbackValidator.py -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/cameraInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/camera/cameraInstance.py -------------------------------------------------------------------------------- /tests/test/standardAssets/camera/cameraKeyframeCountValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/camera/cameraKeyframeCountValidator.py -------------------------------------------------------------------------------- /tests/test/standardAssets/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Geometry Asset Plugins 3 | """ 4 | -------------------------------------------------------------------------------- /tests/test/standardAssets/geometry/geometryCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/geometry/geometryCollector.py -------------------------------------------------------------------------------- /tests/test/standardAssets/geometry/geometryInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/geometry/geometryInstance.py -------------------------------------------------------------------------------- /tests/test/standardAssets/geometry/geometryShapeValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/geometry/geometryShapeValidator.py -------------------------------------------------------------------------------- /tests/test/standardAssets/imageSequence/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Image Sequence Asset Plugins 3 | """ 4 | -------------------------------------------------------------------------------- /tests/test/standardAssets/imageSequence/imageSequenceCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/imageSequence/imageSequenceCollector.py -------------------------------------------------------------------------------- /tests/test/standardAssets/imageSequence/imageSequenceFileExistsValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/imageSequence/imageSequenceFileExistsValidator.py -------------------------------------------------------------------------------- /tests/test/standardAssets/imageSequence/imageSequenceInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/imageSequence/imageSequenceInstance.py -------------------------------------------------------------------------------- /tests/test/standardAssets/standardInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardAssets/standardInstance.py -------------------------------------------------------------------------------- /tests/test/standardReporters/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Example Reporter classes. 3 | """ -------------------------------------------------------------------------------- /tests/test/standardReporters/consolePrintReporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardReporters/consolePrintReporter.py -------------------------------------------------------------------------------- /tests/test/standardReporters/emailSummaryReporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardReporters/emailSummaryReporter.py -------------------------------------------------------------------------------- /tests/test/standardUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/standardUtils.py -------------------------------------------------------------------------------- /tests/test/test_overall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/test_overall.py -------------------------------------------------------------------------------- /tests/test/ui/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Contains all the test UIs for assetQC. 3 | """ -------------------------------------------------------------------------------- /tests/test/ui/mayaUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/assetQC/HEAD/tests/test/ui/mayaUI.py --------------------------------------------------------------------------------