From 5922fb33403f94f8212d4e905e12675dd34b0a0d Mon Sep 17 00:00:00 2001 From: MoonlightSentinel Date: Wed, 9 Feb 2022 16:57:18 +0100 Subject: [PATCH] codecov.sh: Remove lst files for generated source files Those files are generated and don't exist in the repository --- ci/codecov.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/codecov.sh b/ci/codecov.sh index 9fee141be9..b93d471283 100644 --- a/ci/codecov.sh +++ b/ci/codecov.sh @@ -11,7 +11,10 @@ then fi # CodeCov gets confused by lst files which it can't match -rm -rf test/runnable/extra-files test/*.lst +rm -rf test/runnable/extra-files \ + test/*.lst \ + ./*test_results-runner.lst \ + __main.lst # Save the file from URL passed as $1 to the location in $2 doCurl()