forked from shotgunsoftware/tk-multi-breakdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SG-13280 Python 3 port (shotgunsoftware#19)
* Code ported to Python 3. * Fixed previously broken tests. Removed unneeded test_engine, as it is provided by core. * Now states the additional repos needed for the test to run on Azure. * Added Python codecov and azure badges. (Azure should have been added in the black branch but I forgot.)
- Loading branch information
Showing
19 changed files
with
51 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
engines: | ||
test_engine: | ||
location: {'type': 'dev', 'path': '{PIPELINE_CONFIG}/config/bundles/test_engine'} | ||
location: {'type': 'dev', 'path': '$SHOTGUN_TEST_ENGINE'} | ||
debug_logging: false | ||
|
||
apps: | ||
tk-multi-breakdown: | ||
location: {'type': 'dev', 'path': '${BUNDLE_ROOT}/tk-multi-breakdown'} | ||
location: {'type': 'dev', 'path': '$SHOTGUN_CURRENT_REPO_ROOT'} | ||
hook_scene_operations: '{config}/scene_operations.py' | ||
|
||
|
||
frameworks: | ||
tk-framework-widget_v0.2.x: | ||
location: {name: tk-framework-widget, type: dev, version: v0.2.33, path: '${BUNDLE_ROOT}/tk-framework-widget' } | ||
tk-framework-shotgunutils_v2.x.x: | ||
location: {name: tk-framework-shotgunutils, type: dev, version: v2.0.10, path: '${BUNDLE_ROOT}/tk-framework-shotgunutils' } | ||
tk-framework-shotgunutils_v4.x.x: | ||
location: {name: tk-framework-shotgunutils, type: dev, version: v2.0.10, path: '${BUNDLE_ROOT}/tk-framework-shotgunutils' } | ||
tk-framework-qtwidgets_v1.x.x: | ||
location: {name: tk-framework-qtwidgets, type: dev, version: v1.0.1, path: '${BUNDLE_ROOT}/tk-framework-qtwidgets' } | ||
location: {type: dev, path: '$SHOTGUN_REPOS_ROOT/tk-framework-widget' } | ||
tk-framework-shotgunutils_v5.x.x: | ||
location: {type: dev, path: '$SHOTGUN_REPOS_ROOT/tk-framework-shotgunutils' } | ||
tk-framework-qtwidgets_v2.x.x: | ||
location: {name: tk-framework-qtwidgets, type: dev, version: v1.0.1, path: '${BUNDLE_ROOT}/tk-framework-qtwidgets' } | ||
location: {type: dev, path: '$SHOTGUN_REPOS_ROOT/tk-framework-qtwidgets' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters