Ievgeniia Zadorozhna | 9664b42 | 2023-03-28 21:09:46 +0300 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>SPT tests</title> |
| 5 | {% include 'templates/table_styles.css.j2' %} |
| 6 | </head> |
| 7 | <body> |
| 8 | <h1>Simplified Performance Tests (SPT)</h1> |
| 9 | <ul><strong>Configuration used in tests:</strong> |
| 10 | {% for key, value in tests_config_data.items() %} |
| 11 | <li>{{ key }}: <i>{{ value }}</i></li> |
| 12 | {% endfor %} |
| 13 | </ul> |
| 14 | |
| 15 | {% for table in tables %} |
| 16 | <div class="test-header"> |
| 17 | <h3>{{ table.title }}</h3> |
| 18 | <p class="note">Executed at: <i>{{ table.executed_at }}</i></p> |
| 19 | </div> |
| 20 | {{ table.df.to_html(index=False) }} |
| 21 | {% endfor %} |
| 22 | |
| 23 | <p class="timestamp">Report generated at: {{ human_timestamp }}</p> |
| 24 | </body> |
| 25 | </html> |