From 54e8eb2a24294f0102c20685ab3ba3f0f4fd791d Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Fri, 22 Jul 2016 15:49:21 -0400 Subject: [PATCH] [tests] Check at top level for python-requests{,-kerberos} Signed-off-by: Robbie Harwood --- tests/magtests.py | 4 ++++ 1 file changed, 4 insertions(+) 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 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')