{CI} Fix cmdcov issue: remove tested_command.txt
reference
#455
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As tested_command.txt could potentially expose secrets, it has been ignored in PR
However, this change has caused the cmdcov tool to throw an exception because it cannot find tested_command.txt. Additionally, we have determined that tested_command.txt does not contribute to test coverage. Therefore, this PR aims to remove the logic that analyzes tested_command.txt and mitigate the exception.
Exception before fixing:
![image](https://private-user-images.githubusercontent.com/43341456/341621159-3a48d0fd-d868-42b7-83ec-784ec4cd7614.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMDQ4OTAsIm5iZiI6MTczOTAwNDU5MCwicGF0aCI6Ii80MzM0MTQ1Ni8zNDE2MjExNTktM2E0OGQwZmQtZDg2OC00MmI3LTgzZWMtNzg0ZWM0Y2Q3NjE0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDA4NDk1MFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTYxOGVjOTI0MDkxZDk3ZjJhNTBmOGMxMTU1OGUzZWViZjQ0ZTMxMmZiZmRhYmQ5MzFiYjIzMjhlODAyZWQ2OTMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.9W8pboTF4mqvC5QK01NRFTiHhAj0CC8VaQLoOivRfZQ)
Works well after fixing:
![image](https://private-user-images.githubusercontent.com/43341456/341620508-f744f475-048c-41b8-9e90-a63bba23d3e9.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMDQ4OTAsIm5iZiI6MTczOTAwNDU5MCwicGF0aCI6Ii80MzM0MTQ1Ni8zNDE2MjA1MDgtZjc0NGY0NzUtMDQ4Yy00MWI4LTllOTAtYTYzYmJhMjNkM2U5LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDA4NDk1MFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTU3NDEzYWRiZmY1OWE1NTc4NDE3MWZlY2ZjZjUzNGQ2NDE4ZDM4ZTM2YzU3MzdiMTA3M2QzMWE2NmIxZTVlNTYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.5AZOfAJFvtBvV3nAtB7F3I6MyaKvAcd8Oe-jVMuTYf8)