 a743e9277f
			
		
	
	
		a743e9277f
		
			
		
	
	
	
	
		
			
			- Extract update tests into separate tests. - Make `brew tests --online` run only once in its own job. This job could be made non-required to fight flakiness. - Split up the various macOS runs into several steps now that we have more parallel macOS workers available. - Cleanup some flaky tests.
		
			
				
	
	
		
			14 lines
		
	
	
		
			331 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			331 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: false
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| describe "brew services", :integration_test, :needs_network do
 | |
|   it "allows controlling services" do
 | |
|     setup_remote_tap "homebrew/services"
 | |
| 
 | |
|     expect { brew "services", "list" }
 | |
|       .to not_to_output.to_stderr
 | |
|       .and not_to_output.to_stdout
 | |
|       .and be_a_success
 | |
|   end
 | |
| end
 |