summaryrefslogtreecommitdiff
path: root/share/spack/qa/run-style-tests
blob: 9f0cbdb266fe2787a7045254f5a294781d1e1e9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash -e
#
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

#
# Description:
#     Runs source code style checks on Spack.
#     See $SPACK_ROOT/.flake8 for a list of
#     approved exceptions.
#
# Usage:
#     run-flake8-tests
#
. "$(dirname "$0")/setup.sh"

args=()
if [[ -n $GITHUB_BASE_REF ]]; then
    args+=("--base" "${GITHUB_BASE_REF}")
fi

# verify that the code style is correct
spack style --root-relative "${args[@]}"

# verify that the license headers are present
spack license verify