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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-19Cleanup: move copy-paste code into functionCampbell Barton
2017-04-07No more need to alter sys.path in each and every render_layer unit test.Sybren A. Stüvel
I tried the clean way, by setting the PYTHONPATH environment variable for CTest, using SET (CTEST_ENVIRONMENT blablab), but that didn't seem to work.
2017-03-31Layers unittest: Breaking pep8, but getting tests to work againDalai Felinto
I will investigate this further later. The big problem is that the way I'm running tests if I have any error (e.g., ImportError) the pass still pass.
2017-03-22Layer Unittesting: pep8 2/2Dalai Felinto
Mass replacing the common code of all tests ``` echo "Fixing $1" ed "$1" <<'EOF' 1,/Testing/d i from render_layer_common import * import unittest import os import sys sys.path.append(os.path.dirname(__file__)) . w q EOF ``` Using line-width of 120
2017-03-22Layer Unittesting: pep8 1/2Dalai Felinto
Manual corrections, using line-width of 120
2017-03-20Layers unittesting: update after doversion changesDalai Felinto
Collections now are called "Collection 1", instead of "1"
2017-02-14Layers: Unittesting - make them granularDalai Felinto
Some tests may break Blender, which makes the entire unittest routine to fail. They are now I isolate the tests into individual files Kudos to Sybren Stüvel and Sergey Sharybin for the advice. Note: at the moment test_link.py is failing (since a41bbfb7)