Tests: Fix lint-py (last commit)

This commit is contained in:
Wilson Snyder 2024-08-27 05:31:40 -04:00
parent 34bb013941
commit d40f7f5167
2 changed files with 1 additions and 3 deletions

View File

@ -441,7 +441,6 @@ PY_PROGRAMS = \
src/flexfix \
src/vlcovgen \
src/.gdbinit.py \
test_regress/*.py \
test_regress/t/*.pf \
nodist/clang_check_attributes \
nodist/code_coverage \
@ -456,7 +455,6 @@ PY_FILES = \
nodist/code_coverage.dat \
PY_FILES_NOLINT = \
test_regress/t/*.py \
YAPF = yapf3
YAPF_FLAGS = -i --parallel

View File

@ -177,7 +177,7 @@ def test():
# So, remove gcno files before calling codecov
upload_dir = "nodist/obj_dir/upload"
os.makedirs(upload_dir, exist_ok=True)
cmd = ("ci/codecov -v upload-process -Z" + " -f " + cc_dir + "/app_total.info )")
cmd = "ci/codecov -v upload-process -Z" + " -f " + cc_dir + "/app_total.info )"
print("print: Not running:")
print(" export CODECOV_TOKEN=<hidden>")
print(" find . -name '*.gcno' -exec rm {} \\;")