Lint all the things

This commit is contained in:
Michael Droettboom 2018-10-01 19:01:29 -04:00
parent 27d135e61d
commit 6536e5a07c
2 changed files with 2 additions and 4 deletions

View File

@ -118,9 +118,7 @@ test: all
lint: lint:
flake8 src flake8 src test tools benchmark/benchmark.py benchmark/plot_benchmark.py
flake8 test
flake8 tools/*
clang-format -output-replacements-xml src/*.c src/*.h src/*.js | (! grep '<replacement ') clang-format -output-replacements-xml src/*.c src/*.h src/*.js | (! grep '<replacement ')

View File

@ -7,7 +7,7 @@ import sys
sys.path.insert( sys.path.insert(
0, str((Path(__file__).resolve().parents[1] / 'test'))) 0, str((Path(__file__).resolve().parents[1] / 'test')))
import conftest import conftest # noqa
SKIP = set(['fft', 'hyantes']) SKIP = set(['fft', 'hyantes'])