File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
20
20
information.
21
21
- :gh: `173 ` replaces ``ColorCode `` with custom rich themes.
22
22
- :gh: `174 ` restructures loosely defined outcomes to clear ``enum.Enum ``.
23
- - :gh: `176 ` implements a summary panel which holds aggregate information about the
24
- number of successes, fails and other status.
23
+ - :gh: `176 ` and :gh: ` 177 ` implement a summary panel which holds aggregate information
24
+ about the number of successes, fails and other status.
25
25
26
26
27
27
0.1.3 - 2021-11-30
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ def create_summary_panel(
162
162
Padding (str (n_total ), pad = _HORIZONTAL_PADDING ),
163
163
Padding (description_total , pad = _HORIZONTAL_PADDING ),
164
164
Padding ("" , pad = _HORIZONTAL_PADDING ),
165
+ style = "#ffffff" ,
165
166
)
166
167
for outcome , value in counts .items ():
167
168
if value :
@@ -181,8 +182,9 @@ def create_summary_panel(
181
182
182
183
panel = Panel (
183
184
grid ,
184
- title = "Summary" ,
185
+ title = "[bold #ffffff] Summary[/bold #ffffff] " ,
185
186
expand = False ,
187
+ style = "none" ,
186
188
border_style = outcome_enum .FAIL .style
187
189
if counts [outcome_enum .FAIL ]
188
190
else outcome_enum .SUCCESS .style ,
You can’t perform that action at this time.
0 commit comments