Changeset View
Changeset View
Standalone View
Standalone View
tests/python/view_layer/test_layer_syncing.py
- This file was moved from tests/python/render_layer/test_layer_syncing.py.
| # ############################################################ | # ############################################################ | ||||
| # Importing - Same For All Render Layer Tests | # Importing - Same For All Render Layer Tests | ||||
| # ############################################################ | # ############################################################ | ||||
| import unittest | import unittest | ||||
| import os | import os | ||||
| import sys | import sys | ||||
| from render_layer_common import * | from view_layer_common import * | ||||
| # ############################################################ | # ############################################################ | ||||
| # Testing | # Testing | ||||
| # ############################################################ | # ############################################################ | ||||
| class UnitTesting(RenderLayerTesting): | class UnitTesting(ViewLayerTesting): | ||||
| def do_syncing(self, filepath_json, unlink_mode): | def do_syncing(self, filepath_json, unlink_mode): | ||||
| import bpy | import bpy | ||||
| import os | import os | ||||
| import tempfile | import tempfile | ||||
| import filecmp | import filecmp | ||||
| ROOT = self.get_root() | ROOT = self.get_root() | ||||
| with tempfile.TemporaryDirectory() as dirpath: | with tempfile.TemporaryDirectory() as dirpath: | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||