25 lines
		
	
	
		
			493 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			493 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import os.path
 | 
						|
 | 
						|
BASEDIR = os.path.abspath(os.path.dirname(__file__))
 | 
						|
 | 
						|
 | 
						|
def full_path(local_file):
 | 
						|
    return os.path.join(BASEDIR, local_file)
 | 
						|
 | 
						|
 | 
						|
def dotname(module):
 | 
						|
    if not BASEDIR.endswith('tests'):
 | 
						|
        return 'tests.' + module
 | 
						|
    else:
 | 
						|
        return module
 | 
						|
 | 
						|
try:
 | 
						|
    from saml2.sigver import get_xmlsec_binary
 | 
						|
except ImportError:
 | 
						|
    get_xmlsec_binary = None
 | 
						|
 | 
						|
if get_xmlsec_binary:
 | 
						|
    xmlsec_path = get_xmlsec_binary(["/opt/local/bin"])
 | 
						|
else:
 | 
						|
    xmlsec_path = '/usr/bin/xmlsec1'
 |