mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -euxo pipefail
 | |
| 
 | |
| # We allow for failures in this step. Usually you'll be invoking this
 | |
| # script to fix a build failure.
 | |
| pytest "$@" --update-golden-files || true
 | |
| 
 | |
| # Print success message.
 | |
| set +x
 | |
| echo ''
 | |
| echo 'Make sure to check `git diff -w` to verify the changes!'
 | 
