mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-04 05:43:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			225 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			225 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -ex
 | 
						|
 | 
						|
pids=()
 | 
						|
for py in python{2,3}; do
 | 
						|
    nice $py -m unittest discover -s tests >/dev/null &
 | 
						|
    pids+=($!)
 | 
						|
done
 | 
						|
 | 
						|
python3 scripts/test/smoketest.py &
 | 
						|
pids+=($!)
 | 
						|
 | 
						|
for pid in ${pids[@]}; do
 | 
						|
    wait $pid
 | 
						|
done
 |