0
0
forked from blender/blender
blender/tests/utils
Brecht Van Lommel 7a395e2e7f Revert changes from main commits that were merged into blender-v4.1-release
The last good commit was f57e4c5b98.

After this one more fix was committed, this one is preserved as well:
67bd678887.
2024-03-18 15:04:12 +01:00
..
batch_load_blendfiles.py Revert changes from main commits that were merged into blender-v4.1-release 2024-03-18 15:04:12 +01:00
bl_run_operators_event_simulate.py Cleanup: Correct path used in example help text for bl_run_operators_event_simulate.py 2023-11-27 23:42:12 +01:00
bl_run_operators.py
blender_headless.py Cleanup: Grammar in comments 2024-01-06 09:02:56 -05:00
readme.rst

Test Utilities

These tests are not intended to run as part of automated unit testing, rather they can be used to expose issues though stress testing or other less predictable actions that arent practical to include in unit tests.

Examples include:

  • Loading many blend files from a directory, which can expose issues in file reading.

  • Running operators in various contexts which can expose crashes.

  • Simulating user input for so git bisect can be performed on bugs that require user interaction.

  • Fuzz testing file importers & file format support.

Note that we could make reduced versions of these tests into unit tests at some point.