2017-04-28 02:47:56 +08:00
|
|
|
#!/bin/bash -e
|
2016-05-11 17:01:24 +08:00
|
|
|
#
|
2016-08-23 03:35:41 +08:00
|
|
|
# Description:
|
|
|
|
# Runs source code style checks on Spack.
|
|
|
|
# See $SPACK_ROOT/.flake8 for a list of
|
|
|
|
# approved exceptions.
|
2016-05-11 17:01:24 +08:00
|
|
|
#
|
2016-08-23 03:35:41 +08:00
|
|
|
# Usage:
|
|
|
|
# run-flake8-tests
|
|
|
|
#
|
2017-04-28 02:47:56 +08:00
|
|
|
. "$(dirname $0)/setup.sh"
|
|
|
|
check_dependencies flake8
|
2016-05-11 17:01:24 +08:00
|
|
|
|
2017-04-28 02:47:56 +08:00
|
|
|
spack flake8
|