Skip clang-tidy if not available

This commit is contained in:
Thom Wiggers 2019-03-01 12:22:33 +01:00
parent e8c4cf949b
commit 4178768599
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363

View File

@ -1,5 +1,7 @@
import os
from glob import glob
import shutil
import unittest
import pqclean
from helpers import run_subprocess
@ -12,6 +14,8 @@ def test_clang_tidy():
def check_tidy(implementation: pqclean.Implementation):
if shutil.which('clang-tidy') is None:
raise unittest.SkipTest("clang-tidy unavailable in PATH")
cfiles = glob(os.path.join(implementation.path(), '*.c'))
common_files = glob(os.path.join('..', 'common', '*.c'))
run_subprocess(['clang-tidy',