Add automated tests for Storm, with both Hydra and USD export methods #66

Closed
Brecht Van Lommel wants to merge 3 commits from brecht:hydra-tests into hydra-render

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 1397788896 - Show all commits

View File

@ -82,7 +82,11 @@ def main():
report = render_report.Report(name, output_dir, idiff) report = render_report.Report(name, output_dir, idiff)
report.set_pixelated(True) report.set_pixelated(True)
report.set_reference_dir("storm_renders") report.set_reference_dir("storm_renders")
report.set_compare_engine('cycles', 'CPU')
if export_method == 'HYDRA':
report.set_compare_engine('cycles', 'CPU')
else:
report.set_compare_engine('hydra_storm')
test_dir_name = Path(test_dir).name test_dir_name = Path(test_dir).name