Skip to content
Snippets Groups Projects
Unverified Commit 75a2f804 authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Add commands to facilitate Spack/Python/OS reporting (#15834)

* Add --version arg to spack python command
* Add `spack debug report` command
parent 1662c358
No related branches found
No related tags found
No related merge requests found
--- ---
name: "\U0001F41E Bug report" name: "\U0001F41E Bug report"
about: Report a bug in the core of Spack (command not working as expected, etc.) about: Report a bug in the core of Spack (command not working as expected, etc.)
labels: "bug,triage" labels: "bug,triage"
--- ---
<!-- <!-- Explain, in a clear and concise way, the command you ran and the result you were trying to achieve.
*Explain, in a clear and concise way, the command you ran and the result you were trying to achieve. Example: "I ran `spack find` to list all the installed packages and ..." -->
Example: "I ran Spack find to list all the installed packages and..."*
-->
### Spack version
<!-- Add the output to the command below -->
```console
$ spack --version
```
### Steps to reproduce the issue ### Steps to reproduce the issue
...@@ -27,38 +17,26 @@ $ spack <command2> <spec> ...@@ -27,38 +17,26 @@ $ spack <command2> <spec>
### Error Message ### Error Message
<!--If Spack reported an error, provide the error message. If it did not report an error <!-- If Spack reported an error, provide the error message. If it did not report an error but the output appears incorrect, provide the incorrect output. If there was no error message and no output but the result is incorrect, describe how it does not match what you expect. -->
but the output appears incorrect, provide the incorrect output. If there was no error
message and no output but the result is incorrect, describe how it does not match
what you expect. To provide more information you might re-run the commands with
the additional -d/--stacktrace flags:
```console ```console
$ spack -d --stacktrace <command1> <spec> $ spack --debug --stacktrace <command>
$ spack -d --stacktrace <command2> <spec>
...
``` ```
that activate the full debug output.
-->
### Information on your system ### Information on your system
<!--
This includes:
1. which platform you are using <!-- Please include the output of `spack debug report` -->
2. any relevant configuration detail (custom `packages.yaml` or `modules.yaml`, etc.)
--> <!-- If you have any relevant configuration detail (custom `packages.yaml` or `modules.yaml`, etc.) you can add that here as well. -->
### General information ### Additional information
- [ ] I have run `spack --version` and reported the version of Spack <!-- These boxes can be checked by replacing [ ] with [x] or by clicking them after submitting the issue. -->
- [ ] I have run `spack debug report` and reported the version of Spack/Python/Platform
- [ ] I have searched the issues of this repo and believe this is not a duplicate - [ ] I have searched the issues of this repo and believe this is not a duplicate
- [ ] I have run the failing commands in debug mode and reported the output - [ ] I have run the failing commands in debug mode and reported the output
<!-- <!-- We encourage you to try, as much as possible, to reduce your problem to the minimal example that still reproduces the issue. That would help us a lot in fixing it quickly and effectively!
We encourage you to try, as much as possible, to reduce your problem to the minimal example that still reproduces the issue. That would help us a lot in fixing it quickly and effectively!
If you want to ask a question about the tool (how to use it, what it can currently do, etc.), try the `#general` channel on our Slack first. We have a welcoming community and chances are you'll get your reply faster and without opening an issue. If you want to ask a question about the tool (how to use it, what it can currently do, etc.), try the `#general` channel on our Slack first. We have a welcoming community and chances are you'll get your reply faster and without opening an issue.
Other than that, thanks for taking the time to contribute to Spack! Other than that, thanks for taking the time to contribute to Spack! -->
-->
\ No newline at end of file
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
from __future__ import print_function
import os import os
import platform
import re import re
from datetime import datetime from datetime import datetime
from glob import glob from glob import glob
...@@ -11,7 +14,9 @@ ...@@ -11,7 +14,9 @@
import llnl.util.tty as tty import llnl.util.tty as tty
from llnl.util.filesystem import working_dir from llnl.util.filesystem import working_dir
import spack.architecture as architecture
import spack.paths import spack.paths
from spack.main import get_version
from spack.util.executable import which from spack.util.executable import which
description = "debugging commands for troubleshooting Spack" description = "debugging commands for troubleshooting Spack"
...@@ -23,6 +28,7 @@ def setup_parser(subparser): ...@@ -23,6 +28,7 @@ def setup_parser(subparser):
sp = subparser.add_subparsers(metavar='SUBCOMMAND', dest='debug_command') sp = subparser.add_subparsers(metavar='SUBCOMMAND', dest='debug_command')
sp.add_parser('create-db-tarball', sp.add_parser('create-db-tarball',
help="create a tarball of Spack's installation metadata") help="create a tarball of Spack's installation metadata")
sp.add_parser('report', help='print information useful for bug reports')
def _debug_tarball_suffix(): def _debug_tarball_suffix():
...@@ -78,6 +84,16 @@ def create_db_tarball(args): ...@@ -78,6 +84,16 @@ def create_db_tarball(args):
tty.msg('Created %s' % tarball_name) tty.msg('Created %s' % tarball_name)
def report(args):
print('* **Spack:**', get_version())
print('* **Python:**', platform.python_version())
print('* **Platform:**', architecture.Arch(
architecture.platform(), 'frontend', 'frontend'))
def debug(parser, args): def debug(parser, args):
action = {'create-db-tarball': create_db_tarball} action = {
'create-db-tarball': create_db_tarball,
'report': report,
}
action[args.debug_command](args) action[args.debug_command](args)
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
from __future__ import print_function
import os import os
import sys import sys
import code import code
...@@ -20,6 +22,9 @@ ...@@ -20,6 +22,9 @@
def setup_parser(subparser): def setup_parser(subparser):
subparser.add_argument(
'-V', '--version', action='store_true',
help='print the Python version number and exit')
subparser.add_argument( subparser.add_argument(
'-c', dest='python_command', help='command to execute') '-c', dest='python_command', help='command to execute')
subparser.add_argument( subparser.add_argument(
...@@ -31,6 +36,10 @@ def setup_parser(subparser): ...@@ -31,6 +36,10 @@ def setup_parser(subparser):
def python(parser, args, unknown_args): def python(parser, args, unknown_args):
if args.version:
print('Python', platform.python_version())
return
if args.module: if args.module:
sys.argv = ['spack-python'] + unknown_args + args.python_args sys.argv = ['spack-python'] + unknown_args + args.python_args
runpy.run_module(args.module, run_name="__main__", alter_sys=True) runpy.run_module(args.module, run_name="__main__", alter_sys=True)
......
...@@ -3,12 +3,15 @@ ...@@ -3,12 +3,15 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
import platform
import pytest import pytest
import os import os
import os.path import os.path
from spack.main import SpackCommand import spack.architecture as architecture
from spack.main import SpackCommand, get_version
from spack.util.executable import which from spack.util.executable import which
debug = SpackCommand('debug') debug = SpackCommand('debug')
...@@ -41,3 +44,12 @@ def test_create_db_tarball(tmpdir, database): ...@@ -41,3 +44,12 @@ def test_create_db_tarball(tmpdir, database):
spec_suffix = '%s/.spack/spec.yaml' % spec.dag_hash() spec_suffix = '%s/.spack/spec.yaml' % spec.dag_hash()
assert spec_suffix in contents assert spec_suffix in contents
def test_report():
out = debug('report')
arch = architecture.Arch(architecture.platform(), 'frontend', 'frontend')
assert get_version() in out
assert platform.python_version() in out
assert str(arch) in out
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
import platform
import pytest import pytest
import spack import spack
...@@ -16,6 +18,11 @@ def test_python(): ...@@ -16,6 +18,11 @@ def test_python():
assert out.strip() == spack.spack_version assert out.strip() == spack.spack_version
def test_python_version():
out = python('-V')
assert platform.python_version() in out
def test_python_with_module(): def test_python_with_module():
# pytest rewrites a lot of modules, which interferes with runpy, so # pytest rewrites a lot of modules, which interferes with runpy, so
# it's hard to test this. Trying to import a module like sys, that # it's hard to test this. Trying to import a module like sys, that
......
...@@ -655,7 +655,7 @@ _spack_debug() { ...@@ -655,7 +655,7 @@ _spack_debug() {
then then
SPACK_COMPREPLY="-h --help" SPACK_COMPREPLY="-h --help"
else else
SPACK_COMPREPLY="create-db-tarball" SPACK_COMPREPLY="create-db-tarball report"
fi fi
} }
...@@ -663,6 +663,10 @@ _spack_debug_create_db_tarball() { ...@@ -663,6 +663,10 @@ _spack_debug_create_db_tarball() {
SPACK_COMPREPLY="-h --help" SPACK_COMPREPLY="-h --help"
} }
_spack_debug_report() {
SPACK_COMPREPLY="-h --help"
}
_spack_dependencies() { _spack_dependencies() {
if $list_options if $list_options
then then
...@@ -1272,7 +1276,7 @@ _spack_pydoc() { ...@@ -1272,7 +1276,7 @@ _spack_pydoc() {
_spack_python() { _spack_python() {
if $list_options if $list_options
then then
SPACK_COMPREPLY="-h --help -c -m" SPACK_COMPREPLY="-h --help -V --version -c -m"
else else
SPACK_COMPREPLY="" SPACK_COMPREPLY=""
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment