Run Magick on the server but with right path
This commit is contained in:
		
							parent
							
								
									0c230bd0a7
								
							
						
					
					
						commit
						36ed2c68f4
					
				
					 1 changed files with 1 additions and 4 deletions
				
			
		|  | @ -146,10 +146,7 @@ pkgs.nixosTest { | |||
|     with subtest("Image displays"): | ||||
|       server.succeed(f"su - selenium -c 'selenium-script test@test.com {password}' >&2") | ||||
|       server.copy_from_vm("/home/selenium/screenshot.png", "") | ||||
|       displayed_colors = subprocess.run( | ||||
|           ["magick", "screenshot.png", "-define", "histogram:unique-colors=true", "-format", "%c", "histogram:info:"], | ||||
|           capture_output=True | ||||
|       ) | ||||
|       displayed_colors = server.succeed("magick /home/selenium/screenshot.png -define histogram:unique-colors=true -format %c histogram:info:") | ||||
|       # check that the green image displayed somewhere | ||||
|       green_check = re.match(".*#00FF00.*", displayed_colors.stdout.decode(), re.S) | ||||
|       if green_check is None: | ||||
|  |  | |||
		Reference in a new issue