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-07-17Unittests: Make sure layer tests pass with or without workspaceDalai Felinto
2017-06-19Cleanup: move copy-paste code into functionCampbell Barton
2017-06-09Fix failing render-layer tests after workpsace commitJulian Eisel
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-04-01Layers / Depsgraph: Unittesting for selection and visibility evaluationDalai Felinto
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-02-17Layers: Fix visibility evalution + UnittestingDalai Felinto
test_evaluation_visibility_a failed before, but it is now fixed test_evaluation_visibility_b passed before and was used as control to make sure it was not broken