@@ -10,6 +10,7 @@ def test_cyanotype_by_rgb(setup):
1010 os .path .join ("." , "tests" , "pic" , "dog.jpg" ),
1111 )
1212 image = Processor (image = image , grayscale = True , cyanotype = True ).process ()
13+ image .show ()
1314 assert image .mode == "RGB"
1415
1516
@@ -18,6 +19,7 @@ def test_cyanotype_by_grayscale(setup):
1819 os .path .join ("." , "tests" , "pic" , "tokyo_station.jpg" ),
1920 )
2021 image = Processor (image = image , grayscale = True , cyanotype = True ).process ()
22+ image .show ()
2123 assert image .mode == "RGB"
2224
2325
@@ -26,6 +28,7 @@ def test_cyanotype_by_rgba(setup):
2628 os .path .join ("." , "tests" , "pic" , "nullpo.png" ),
2729 )
2830 image = Processor (image = image , grayscale = True , cyanotype = True ).process ()
31+ image .show ()
2932 assert image .mode == "RGB"
3033
3134
@@ -34,6 +37,7 @@ def test_cyanotype_by_grayscale_with_alpha(setup):
3437 os .path .join ("." , "tests" , "pic" , "test.png" ),
3538 )
3639 image = Processor (image = image , grayscale = True , cyanotype = True ).process ()
40+ image .show ()
3741 assert image .mode == "RGB"
3842
3943
@@ -42,6 +46,7 @@ def test_cyanotype_by_rgb_using_tosaka_mode(setup):
4246 os .path .join ("." , "tests" , "pic" , "dog.jpg" ),
4347 )
4448 image = Processor (image = image , tosaka = 2.4 , cyanotype = True ).process ()
49+ image .show ()
4550 assert image .mode == "RGB"
4651
4752
@@ -50,6 +55,7 @@ def test_cyanotype_by_grayscale_using_tosaka_mode(setup):
5055 os .path .join ("." , "tests" , "pic" , "tokyo_station.jpg" ),
5156 )
5257 image = Processor (image = image , tosaka = 2.4 , cyanotype = True ).process ()
58+ image .show ()
5359 assert image .mode == "RGB"
5460
5561
@@ -58,6 +64,7 @@ def test_cyanotype_by_rgba_using_tosaka_mode(setup):
5864 os .path .join ("." , "tests" , "pic" , "nullpo.png" ),
5965 )
6066 image = Processor (image = image , tosaka = 2.4 , cyanotype = True ).process ()
67+ image .show ()
6168 assert image .mode == "RGB"
6269
6370
@@ -66,6 +73,7 @@ def test_cyanotype_by_grayscale_with_alpha_using_tosaka_mode(setup):
6673 os .path .join ("." , "tests" , "pic" , "test.png" ),
6774 )
6875 image = Processor (image = image , tosaka = 2.4 , cyanotype = True ).process ()
76+ image .show ()
6977 assert image .mode == "RGB"
7078
7179
@@ -74,6 +82,7 @@ def test_cyanotype_by_rgb_with_none_grayscale_option(setup):
7482 os .path .join ("." , "tests" , "pic" , "dog.jpg" ),
7583 )
7684 image = Processor (image = image , cyanotype = True ).process ()
85+ image .show ()
7786 assert image .mode == "RGB"
7887
7988
@@ -82,6 +91,7 @@ def test_cyanotype_by_grayscale_with_none_grayscale_option(setup):
8291 os .path .join ("." , "tests" , "pic" , "tokyo_station.jpg" ),
8392 )
8493 image = Processor (image = image , cyanotype = True ).process ()
94+ image .show ()
8595 assert image .mode == "RGB"
8696
8797
@@ -90,6 +100,7 @@ def test_cyanotype_by_rgba_with_none_grayscale_option(setup):
90100 os .path .join ("." , "tests" , "pic" , "nullpo.png" ),
91101 )
92102 image = Processor (image = image , cyanotype = True ).process ()
103+ image .show ()
93104 assert image .mode == "RGB"
94105
95106
@@ -98,4 +109,5 @@ def test_cyanotype_by_grayscale_with_alpha_with_none_grayscale_option(setup):
98109 os .path .join ("." , "tests" , "pic" , "test.png" ),
99110 )
100111 image = Processor (image = image , cyanotype = True ).process ()
112+ image .show ()
101113 assert image .mode == "RGB"
0 commit comments