File tree 2 files changed +47
-0
lines changed
2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ < script src ="/data/regrtests_results.json "> </ script >
6
+ <!-- header section -->
7
+ < section class ="bg-light ">
8
+ < div class ="w-80 m-auto ">
9
+ failed, passed, warning
10
+ </ div >
11
+ </ section >
12
+
13
+ <!-- content -->
14
+ < section >
15
+ < div class ="w-md-80 m-auto ">
16
+ < div class ="w-md-80 ">
17
+ {% for test in site.data.regrtests_results.suites %}
18
+ {% for result in test %}
19
+ {% if result.name %} < div > name: {{result.name }}</ div > {% endif %}
20
+ {% if result.class %} < div > class: {{result.class }}</ div > {% endif %}
21
+ {% if result.module %} < div > module: {{result.module }}</ div > {% endif %}
22
+ {% if result.description %} < div > description: {{result.description }}</ div > {% endif %}
23
+ {% for cases in result.cases %}
24
+ < ul >
25
+ {% for case in cases %}
26
+ {% if case.casename %} < li > casename: {{case.casename }}</ li > {% endif %}
27
+ {% if case.method %} < li > method: {{case.method }}</ li > {% endif %}
28
+ {% if case.result %} < li > result: {{case.result }}</ li > {% endif %}
29
+ {% if case.caseexecutiontime %} < li > caseexecutiontime: {{case.caseexecutiontime }}</ li > {% endif %}
30
+ {% endfor %}
31
+ </ ul >
32
+ {% endfor %}
33
+ {% endfor %}
34
+ {% endfor %}
35
+ </ div >
36
+ </ div >
37
+ </ section >
38
+
39
+
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : regtests
3
+ title : " Regtest"
4
+ date : 2020-04-05 01:45:00 +0900
5
+ categories : numbers
6
+ ---
7
+
8
+ a
You can’t perform that action at this time.
0 commit comments