Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_group_a.py « view_layer « python « tests - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e1b83efbe564649250d86ef17c036f1419bf205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# ############################################################
# Importing - Same For All Render Layer Tests
# ############################################################

import unittest
import os
import sys

from view_layer_common import *


# ############################################################
# Testing
# ############################################################

class UnitTesting(ViewLayerTesting):
    def test_group_create_basic(self):
        """
        See if the creation of new groups is not crashing anything.
        """
        import bpy
        scene = bpy.context.scene
        layer_collection = bpy.context.layer_collection

        # Cleanup Viewport view layer
        # technically this shouldn't be needed but
        # for now we need it because depsgraph build all the view layers
        # at once.

        while len(scene.view_layers) > 1:
            scene.view_layers.remove(scene.view_layers[1])

        # create group
        group = layer_collection.create_group()

        # update depsgraph
        scene.update()


# ############################################################
# Main - Same For All Render Layer Tests
# ############################################################

if __name__ == '__main__':
    UnitTesting._extra_arguments = setup_extra_arguments(__file__)
    unittest.main()