From 6b06020e7df66ede1e50943bdb205fb4790a8b9d Mon Sep 17 00:00:00 2001 From: Christoph Alt <christoph.alt@fau.de> Date: Wed, 11 Sep 2024 16:49:46 +0200 Subject: [PATCH] added a few more at least it executes without failing tests to the dashboard creation --- tests/test_dashboard_creation.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/test_dashboard_creation.py b/tests/test_dashboard_creation.py index f10735a..8371287 100644 --- a/tests/test_dashboard_creation.py +++ b/tests/test_dashboard_creation.py @@ -7,7 +7,7 @@ from dashboards.dashboard_base import (get_commit_annotation, from dashboards.dashboard_list import dashboard_uniformGridGPU from dashboards.dashboard_fe2ti import dashboard_fe2ti from dashboards.dashboard_pystencils import dashboard_pystencils_cpu, dashboard_pystencils_gpu -from dashboards.dashboard_walberla import dashboard_uniformgridgpu, dashboard_uniformgridcpu +from dashboards.dashboard_walberla import dashboard_uniformgridgpu, dashboard_uniformgridcpu, dashboard_percolationgpu, dashboard_fslbmgravitywave, dashboard_uniformgridgpu_profile, dashboard_uniformgridcpu_relativeperformance from dashboards.influx_queries import Query, show_tag_values dataSource = 'InfluxDB-1' @@ -85,8 +85,6 @@ def test_build_dashboard(): def test_dashboard_fe2ti(): - print(dashboard_fe2ti()) - print("++++++++++++++++++1++++++++++++++++++") dashboard_fe2ti() @@ -98,3 +96,7 @@ def test_dashboard_pystencils_cpu(): def test_dashboard_walberla(): dashboard_uniformgridcpu() dashboard_uniformgridgpu() + dashboard_uniformgridgpu_profile() + dashboard_percolationgpu() + dashboard_uniformgridcpu_relativeperformance() + dashboard_fslbmgravitywave() -- GitLab