From 2a0b41c926f56588946ca3d73a851f7ec452d53b Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Fri, 22 Jul 2016 15:49:21 -0400 Subject: Check at top level for python-requests{,-kerberos} Signed-off-by: Robbie Harwood Reviewed-by: Simo Sorce Merges #99 --- tests/magtests.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/magtests.py b/tests/magtests.py index 51fa050..0065b7b 100755 --- a/tests/magtests.py +++ b/tests/magtests.py @@ -12,6 +12,10 @@ import subprocess import sys import time +# check that we can import requests (for use in test scripts) +import requests, requests_kerberos +del(requests) +del(requests_kerberos) def parse_args(): parser = argparse.ArgumentParser(description='Mod Auth GSSAPI Tests Environment') -- cgit