diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-style-tests (renamed from share/spack/qa/run-flake8-tests) | 4 | ||||
-rwxr-xr-x | share/spack/qa/setup.sh | 4 | ||||
-rwxr-xr-x | share/spack/spack-completion.bash | 13 |
3 files changed, 17 insertions, 4 deletions
diff --git a/share/spack/qa/run-flake8-tests b/share/spack/qa/run-style-tests index d6077fceb8..b91834f9d8 100755 --- a/share/spack/qa/run-flake8-tests +++ b/share/spack/qa/run-style-tests @@ -15,10 +15,10 @@ # run-flake8-tests # . "$(dirname $0)/setup.sh" -check_dependencies flake8 +check_dependencies flake8 mypy # verify that the code style is correct -spack flake8 +spack style # verify that the license headers are present spack license verify diff --git a/share/spack/qa/setup.sh b/share/spack/qa/setup.sh index e614bae909..3940d497c2 100755 --- a/share/spack/qa/setup.sh +++ b/share/spack/qa/setup.sh @@ -66,6 +66,10 @@ check_dependencies() { spack_package=py-flake8 pip_package=flake8 ;; + mypy) + spack_package=py-mypy + pip_package=mypy + ;; dot) spack_package=graphviz ;; diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index cbe59bc90a..36880dfdef 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -333,7 +333,7 @@ _spack() { then SPACK_COMPREPLY="-h --help -H --all-help --color -C --config-scope -d --debug --timestamp --pdb -e --env -D --env-dir -E --no-env --use-env-repo -k --insecure -l --enable-locks -L --disable-locks -m --mock -p --profile --sorted-profile --lines -v --verbose --stacktrace -V --version --print-shell-vars" else - SPACK_COMPREPLY="activate add arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module patch pkg providers pydoc python reindex remove rm repo resource restage setup solve spec stage test test-env tutorial undevelop uninstall unit-test unload url verify versions view" + SPACK_COMPREPLY="activate add arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module patch pkg providers pydoc python reindex remove rm repo resource restage setup solve spec stage style test test-env tutorial undevelop uninstall unit-test unload url verify versions view" fi } @@ -913,7 +913,7 @@ _spack_find() { _spack_flake8() { if $list_options then - SPACK_COMPREPLY="-h --help -b --base -a --all -o --output -r --root-relative -U --no-untracked" + SPACK_COMPREPLY="-h --help -b --base -a --all -o --output -r --root-relative -U --no-untracked --no-flake8 --no-mypy --black" else SPACK_COMPREPLY="" fi @@ -1513,6 +1513,15 @@ _spack_stage() { fi } +_spack_style() { + if $list_options + then + SPACK_COMPREPLY="-h --help -b --base -a --all -o --output -r --root-relative -U --no-untracked --no-flake8 --no-mypy --black" + else + SPACK_COMPREPLY="" + fi +} + _spack_test() { if $list_options then |