aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/tests/run-tests.py
diff options
context:
space:
mode:
authorAlon Bar-Lev <[email protected]>2017-04-08 13:34:33 +0000
committerJustus Winter <[email protected]>2017-04-10 12:48:03 +0000
commit3cc90b67fa970e716c8672ec5c5f591fa11ab216 (patch)
treeb619ad9ec29c39fdbf069cfa7ade26315fa6c9fc /lang/python/tests/run-tests.py
parentpython: Read gpg-error.h using the pre-processor (diff)
downloadgpgme-3cc90b67fa970e716c8672ec5c5f591fa11ab216.tar.gz
gpgme-3cc90b67fa970e716c8672ec5c5f591fa11ab216.zip
python: Support alternatate libdir for tests
* lang/python/tests/run-tests.py: Add --python-libdir optional parameter. -- This will make the python tests usable for downstream that build python module outside of autotools build system. Signed-off-by: Alon Bar-Lev <[email protected]>
Diffstat (limited to 'lang/python/tests/run-tests.py')
-rw-r--r--lang/python/tests/run-tests.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/lang/python/tests/run-tests.py b/lang/python/tests/run-tests.py
index f236712f..78a0ec24 100644
--- a/lang/python/tests/run-tests.py
+++ b/lang/python/tests/run-tests.py
@@ -51,6 +51,9 @@ parser.add_argument('--srcdir', type=str,
parser.add_argument('--builddir', type=str,
default=os.environ.get("abs_builddir", ""),
help='Location of the tests.')
+parser.add_argument('--python-libdir', type=str,
+ default=None,
+ help='Optional location of the in-tree module lib directory.')
parser.add_argument('--parallel', action="store_true", default=False,
help='Ignored. For compatibility with run-tests.scm.')
@@ -69,18 +72,20 @@ for interpreter in args.interpreters:
version = subprocess.check_output(
[interpreter, "-c", "import sys; print('{0}.{1}'.format(sys.version_info[0], sys.version_info[1]))"]).strip().decode()
- pattern = os.path.join(args.builddir, "..",
- "{0}-gpg".format(os.path.basename(interpreter)),
- "lib*")
- builddirs = glob.glob(pattern)
- if len(builddirs) == 0:
- sys.exit("Build directory matching {0!r} not found.".format(pattern))
- elif len(builddirs) > 1:
- sys.exit("Multiple build directories matching {0!r} found: {1}".format(
- pattern, builddirs))
+ if not args.python_libdir:
+ pattern = os.path.join(args.builddir, "..",
+ "{0}-gpg".format(os.path.basename(interpreter)),
+ "lib*")
+ libdirs = glob.glob(pattern)
+ if len(libdirs) == 0:
+ sys.exit("Build directory matching {0!r} not found.".format(pattern))
+ elif len(libdirs) > 1:
+ sys.exit("Multiple build directories matching {0!r} found: {1}".format(
+ pattern, libdirs))
+ python_libdir = libdirs[0]
env = dict(os.environ)
- env["PYTHONPATH"] = builddirs[0]
+ env["PYTHONPATH"] = python_libdir
if not args.quiet:
print("Running tests using {0} ({1})...".format(interpreter, version))