summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-12 01:43:47 +0100
committerDavid Robillard <d@drobilla.net>2020-11-12 01:47:44 +0100
commit0495c381d065713852ee9e61df544ba531223824 (patch)
tree636027d82ab20f9948d75b92b2e63711159cb875 /wscript
parentf8d95542492a8a960853c0cb0b855d2473c941a0 (diff)
downloadraul-0495c381d065713852ee9e61df544ba531223824.tar.gz
raul-0495c381d065713852ee9e61df544ba531223824.tar.bz2
raul-0495c381d065713852ee9e61df544ba531223824.zip
Use separate clang-tidy configurations for headers and tests
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index ebddb46..59e5a07 100644
--- a/wscript
+++ b/wscript
@@ -175,7 +175,7 @@ def lint(ctx):
if "CLANG_TIDY" in ctx.env and "clang" in ctx.env.CXX[0]:
Logs.info("Running clang-tidy")
- sources = glob.glob('test/*.cpp')
+ sources = glob.glob('test/*.cpp') + glob.glob('include/raul/*.hpp')
sources = list(map(os.path.abspath, sources))
procs = []
for source in sources: