render: add html report generation

This commit is contained in:
Ivan Avdeev
2023-11-28 12:32:40 -05:00
parent bb5c04efd8
commit c1bd3d7619
6 changed files with 330 additions and 22 deletions

24
render/report.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rendertest report</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="utils.js"></script>
<script src="work/data.js"></script>
<script src="index.js"></script>
</head>
<body>
<!-- TODO have a date and build number or whatever -->
<h1>Rendertest report</h1>
<h2>Summary</h2>
<div id="summary"></div>
<h2>List of things that are not perfect</h2>
<div id="fail_table"></div>
<h2>Images of things that are not perfect</h2>
<div id="fail_images"></div>
</body>
</html>