-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently the action sets envvars as outputs to run tests. This is easier for the customer, but we've seen more than a few times users hitting Linux or GHA command size limits because of the amount of tests to run. To solve this problem, the present changes move the output to files created by the action. It requires a different - more complicated - command to run tests, as indicated in `README.md`, but should still be doable. And should solve the command size problem too. * use .txt versions of output that are easier to use JSON requires more involvement of customers. .txt is Easier to use, as suggested by @thomasrockhu-codecov * fix some typos * add random test in "ats_tests_to_run" if no test is selected to run
- Loading branch information
1 parent
ccd3eab
commit 4f17ac7
Showing
6 changed files
with
104 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ node_modules | |
coverage | ||
__pycache__ | ||
codecov_ats_local.sh | ||
|
||
# act | ||
.secrets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters