jekyll-report-dashboard 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5f5808b13b6c453ce360399837b04c74088fb3e1e4538339008dd7589c07a9e
|
4
|
+
data.tar.gz: 79bfdf0705d943334a784fb0bb751026550738546751187f223d9ed1ec285e51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13af548fde3b7361d4e5187149b6268fcf317f32702a15684e62c91451aa993bc14facbf9385436e1eece48ee4dee080b1c6a93125fe00816e0ece2d2f63e162
|
7
|
+
data.tar.gz: 77e5fa8479170e108fde47da323540ad629de477d0901cf3b0f2b2d9c80fffcdab605637a06ae19db614c933042b38c220691eb3ae7d7e58b46493d180ec08cd
|
@@ -13,8 +13,8 @@
|
|
13
13
|
|
14
14
|
<!-- get all of the run_ids in the branch, then reverse the list and get the first one -->
|
15
15
|
{% assign runs = "" | split: ',' %}
|
16
|
-
{% for
|
17
|
-
{% assign runs = runs | push:
|
16
|
+
{% for run in site.data.playwright-reports.branches[branch_name] %}
|
17
|
+
{% assign runs = runs | push: run[0] %}
|
18
18
|
{% endfor %}
|
19
19
|
|
20
20
|
{% assign latest_run_id = runs | reverse | first %}
|
@@ -4,8 +4,8 @@ layout: page
|
|
4
4
|
|
5
5
|
<!-- get the run ids for the branch and sort them by newest to oldest -->
|
6
6
|
{% assign unsorted_runs = "" | split: ',' %}
|
7
|
-
{% for
|
8
|
-
{% assign unsorted_runs = unsorted_runs | push:
|
7
|
+
{% for run in site.data.playwright-reports.branches[page.branch] %}
|
8
|
+
{% assign unsorted_runs = unsorted_runs | push: run[0] %}
|
9
9
|
{% endfor %}
|
10
10
|
|
11
11
|
{% assign run_ids = unsorted_runs | reverse %}
|
@@ -5,14 +5,15 @@ module Jekyll
|
|
5
5
|
@base = base
|
6
6
|
@dir = dir
|
7
7
|
@name = 'index.html'
|
8
|
-
|
8
|
+
|
9
9
|
process(@name)
|
10
10
|
|
11
|
-
@data =
|
12
|
-
|
11
|
+
@data = {
|
12
|
+
'layout' => 'playwright-branch',
|
13
|
+
'title' => branch,
|
14
|
+
'branch' => branch
|
15
|
+
}
|
13
16
|
|
14
|
-
@data['branch'] = branch
|
15
|
-
@data['title'] = branch
|
16
17
|
end
|
17
18
|
end
|
18
19
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-report-dashboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tiffany Forkner
|
@@ -70,7 +70,6 @@ files:
|
|
70
70
|
- _layouts/page.html
|
71
71
|
- _layouts/playwright-branch.html
|
72
72
|
- _layouts/post.html
|
73
|
-
- _layouts/release-note.html
|
74
73
|
- _plugins/playwright-branch-index-generator.rb
|
75
74
|
- assets/css/styles.css
|
76
75
|
- coverage.markdown
|