From d40f7f51672465094babbbce7d55fb42ec238457 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 27 Aug 2024 05:31:40 -0400 Subject: [PATCH] Tests: Fix lint-py (last commit) --- Makefile.in | 2 -- nodist/code_coverage | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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 {} \\;")