@@ -1449,8 +1449,8 @@ def test_rasterize_apply_when_instance_with_line_width(self):
14491449 assert isinstance (overlay , hv .Overlay )
14501450 assert len (overlay ) == 2
14511451
1452+ @pytest .mark .issue (6326 )
14521453 def test_rasterize_path_empty_string_as_cat_sep (self ):
1453- # https://github.com/holoviz/holoviews/issues/6326
14541454 df = pd .DataFrame (
14551455 {
14561456 "x" : [1 , 1 , np .nan , 3 , 3 , np .nan ],
@@ -1478,8 +1478,8 @@ def test_rasterize_path_empty_string_as_cat_sep(self):
14781478 )
14791479 xr .testing .assert_equal (rasterized .data , expected )
14801480
1481+ @pytest .mark .issue (5127 )
14811482 def test_rasterize_curve_with_timezone_aware_datetime (self ):
1482- # Test for https://github.com/holoviz/holoviews/issues/5127
14831483 t = pd .date_range (
14841484 start = "2020-01-01 10:00" , end = "2020-01-01 12:00" , freq = "h" , tz = "Asia/Shanghai"
14851485 )
@@ -1679,8 +1679,8 @@ def test_rasterize_overlay_seeds_range_streams():
16791679
16801680
16811681@pytest .mark .usefixtures ("bokeh_backend" )
1682+ @pytest .mark .issue (6595 )
16821683def test_selector_single_categorical ():
1683- # Test for https://github.com/holoviz/holoviews/issues/6595
16841684 plot = hv .Points (([0 , 1 ], [0 , 1 ], ["A" , "A" ]), ["X" , "Y" ], "C" )
16851685 plot = rasterize (plot , aggregator = ds .count_cat ("C" ), selector = ds .first ("X" ))
16861686 plot = dynspread (plot )
@@ -2060,8 +2060,8 @@ def test_imagestack_datashader_color_key():
20602060 hv .render (op ) # should not error out
20612061
20622062
2063+ @pytest .mark .issue (6154 )
20632064def test_imagestack_datashade_count_cat ():
2064- # Test for https://github.com/holoviz/holoviews/issues/6154
20652065 df = pd .DataFrame ({"x" : range (3 ), "y" : range (3 ), "c" : range (3 )})
20662066 op = datashade (hv .Points (df ), aggregator = ds .count_cat ("c" ))
20672067 hv .render (op ) # should not error out
@@ -2074,8 +2074,8 @@ def test_imagestack_dynspread():
20742074 hv .render (op ) # should not error out
20752075
20762076
2077+ @pytest .mark .issue (6324 )
20772078def test_datashade_count_cat_no_change_inplace ():
2078- # Test for https://github.com/holoviz/holoviews/issues/6324
20792079 df = pd .DataFrame ({"x" : range (3 ), "y" : range (3 ), "c" : list (map (str , range (3 )))})
20802080 expected_dtype = pd .StringDtype (na_value = np .nan ) if PANDAS_GE_3_0_0 else "object"
20812081 assert df ["c" ].dtype == expected_dtype
0 commit comments