Currently additional steps are needed (those have to be done manually): - allow writing to /var/lib/qubes - copy /etc/qubes/storage.conf
		
			
				
	
	
		
			11 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
: "${PYTHON:=python}"
 | 
						|
: "${TESTPYTHONPATH:=test-packages}"
 | 
						|
 | 
						|
PYTHONPATH="${TESTPYTHONPATH}:${PYTHONPATH}"
 | 
						|
export PYTHONPATH
 | 
						|
 | 
						|
"${PYTHON}" setup.py egg_info --egg-base "${TESTPYTHONPATH}"
 | 
						|
"${PYTHON}" -m qubes.tests.run
 |