diff --git a/Makefile.in b/Makefile.in index 3b932402c..bda52e1bc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/nodist/code_coverage b/nodist/code_coverage index cdc9483be..ce7e5270f 100755 --- a/nodist/code_coverage +++ b/nodist/code_coverage @@ -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=") print(" find . -name '*.gcno' -exec rm {} \\;")