summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobbie Harwood <rharwood@redhat.com>2016-07-22 15:49:21 -0400
committerSimo Sorce <simo@redhat.com>2016-07-25 08:16:10 -0400
commit2a0b41c926f56588946ca3d73a851f7ec452d53b (patch)
treed962053ac70db2003d65322fd0390a11390e7524
parent86aaf37e4ca95145512c56e3643bcbcb0e534b57 (diff)
downloadmod_auth_gssapi-2a0b41c926f56588946ca3d73a851f7ec452d53b.tar.gz
mod_auth_gssapi-2a0b41c926f56588946ca3d73a851f7ec452d53b.tar.xz
mod_auth_gssapi-2a0b41c926f56588946ca3d73a851f7ec452d53b.zip
Check at top level for python-requests{,-kerberos}
Signed-off-by: Robbie Harwood <rharwood@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com> Merges #99
-rwxr-xr-xtests/magtests.py4
1 files changed, 4 insertions, 0 deletions
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')