This commit is contained in:
Eric Froemling 2021-06-09 13:54:14 -05:00
parent 634ae77b7e
commit 3a374ee834
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98
2 changed files with 11 additions and 11 deletions

View File

@ -632,43 +632,43 @@ check2-full:
@tools/pcommand echo SGRN BLD ALL CHECKS PASSED!
# Run Cpplint checks on all C/C++ code.
cpplint: prereqs
cpplint: prereqs meta
@tools/pcommand cpplint
# Run Cpplint checks without caching (all files are checked).
cpplint-full: prereqs
cpplint-full: prereqs meta
@tools/pcommand cpplint -full
# Run Pylint checks on all Python Code.
pylint: prereqs
pylint: prereqs meta
@tools/pcommand pylint
# Run Pylint checks without caching (all files are checked).
pylint-full: prereqs
pylint-full: prereqs meta
@tools/pcommand pylint -full
# Run Mypy checks on all Python code.
mypy: prereqs
mypy: prereqs meta
@tools/pcommand mypy
# Run Mypy checks without caching (all files are checked).
mypy-full: prereqs
mypy-full: prereqs meta
@tools/pcommand mypy -full
# Run Mypy checks on all Python code using daemon mode.
dmypy: prereqs
dmypy: prereqs meta
@tools/pcommand dmypy
# Stop the mypy daemon
dmypy-stop: prereqs
dmypy-stop: prereqs meta
@tools/pcommand dmypy -stop
# Run PyCharm checks on all Python code.
pycharm: prereqs
pycharm: prereqs meta
@tools/pcommand pycharm
# Run PyCharm checks without caching (all files are checked).
pycharm-full: prereqs
pycharm-full: prereqs meta
@tools/pcommand pycharm -full
# Tell make which of these targets don't represent files.

View File

@ -117,7 +117,7 @@ def _lazybuild_check_paths(inpaths: List[str], category: SourceCategory,
continue
for root, _dnames, fnames in os.walk(inpath):
# Only gen category uses generated src.
# Only the meta category uses meta src.
if (root.startswith('src/meta')
and category is not SourceCategory.META):
continue