diff options
author | 百地 希留耶 <65301509+KiruyaMomochi@users.noreply.github.com> | 2022-03-10 00:09:57 +0900 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-04-14 11:08:17 +0200 |
commit | d4f23268245333bb32f13606dbc3d53c1f862002 (patch) | |
tree | 03b3a2f763658f8ec206332884668b5af7072e2c | |
parent | 9edfd251348860bcfa041bfa28502fa384f3baf6 (diff) | |
download | spack-d4f23268245333bb32f13606dbc3d53c1f862002.tar.gz spack-d4f23268245333bb32f13606dbc3d53c1f862002.tar.bz2 spack-d4f23268245333bb32f13606dbc3d53c1f862002.tar.xz spack-d4f23268245333bb32f13606dbc3d53c1f862002.zip |
Fix tab completion erroring with `spack unit-test` (#29405)
-rw-r--r-- | lib/spack/spack/cmd/commands.py | 2 | ||||
-rwxr-xr-x | share/spack/bash/spack-completion.in | 4 | ||||
-rwxr-xr-x | share/spack/spack-completion.bash | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/spack/spack/cmd/commands.py b/lib/spack/spack/cmd/commands.py index f58c0aab4b..2f6186a7db 100644 --- a/lib/spack/spack/cmd/commands.py +++ b/lib/spack/spack/cmd/commands.py @@ -117,7 +117,7 @@ _positional_to_subroutine = { 'virtual': '_providers', 'namespace': '_repos', 'hash': '_all_resource_hashes', - 'pytest': '_tests', + 'pytest': '_unit_tests', } diff --git a/share/spack/bash/spack-completion.in b/share/spack/bash/spack-completion.in index 8c01232f5e..bd2814806c 100755 --- a/share/spack/bash/spack-completion.in +++ b/share/spack/bash/spack-completion.in @@ -208,10 +208,10 @@ _repos() { SPACK_COMPREPLY="$SPACK_REPOS" } -_tests() { +_unit_tests() { if [[ -z "${SPACK_TESTS:-}" ]] then - SPACK_TESTS="$(spack test -l)" + SPACK_TESTS="$(spack unit-test -l)" fi SPACK_COMPREPLY="$SPACK_TESTS" } diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index e92a525e63..862fa04a06 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -208,10 +208,10 @@ _repos() { SPACK_COMPREPLY="$SPACK_REPOS" } -_tests() { +_unit_tests() { if [[ -z "${SPACK_TESTS:-}" ]] then - SPACK_TESTS="$(spack test -l)" + SPACK_TESTS="$(spack unit-test -l)" fi SPACK_COMPREPLY="$SPACK_TESTS" } @@ -1780,7 +1780,7 @@ _spack_unit_test() { then SPACK_COMPREPLY="-h --help -H --pytest-help -l --list -L --list-long -N --list-names --extension -s -k --showlocals" else - _tests + _unit_tests fi } |