diff options
author | mattip <matti.picus@gmail.com> | 2019-09-16 18:06:28 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-09-20 09:35:48 +0300 |
commit | cdf67fa06298ce7fd6ee909b7777dc77c0cfa49f (patch) | |
tree | 858fdad5037274e9ebcdaf677ebe707cf66b1f19 /runtests.py | |
parent | 55df75a9402a8b3550eedc243bcf24c0b785c52b (diff) | |
download | numpy-cdf67fa06298ce7fd6ee909b7777dc77c0cfa49f.tar.gz |
MAINT: move the option to build_src, simplifies logic
Diffstat (limited to 'runtests.py')
-rwxr-xr-x | runtests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.py b/runtests.py index b518ca724..d84dc8dac 100755 --- a/runtests.py +++ b/runtests.py @@ -68,7 +68,7 @@ def main(argv): parser.add_argument("--verbose", "-v", action="count", default=1, help="more verbosity") parser.add_argument("--debug-configure", action="store_true", - help="show all compiler output during system configuration") + help="add -v to build_src to show cconfiguration compiler output") parser.add_argument("--no-build", "-n", action="store_true", default=False, help="do not build the project (use system installed version)") parser.add_argument("--build-only", "-b", action="store_true", default=False, @@ -369,7 +369,7 @@ def build_project(args): if args.parallel > 1: cmd += ["-j", str(args.parallel)] if args.debug_configure: - cmd += ["--debug-configure"] + cmd += ["build_src", "--verbose"] # Install; avoid producing eggs so numpy can be imported from dst_dir. cmd += ['install', '--prefix=' + dst_dir, '--single-version-externally-managed', |