-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
experiment: BYO test coverage explorer #5982
Comments
Do we commit the coverage report files in the repository? I'd prefer to avoid it as it feels like the noise to the commit history. |
Is there a way to specify where Otherwise, to remove everything from
|
There seems none
All raw coverage data are in the form of
|
I get the following on my machine:
|
Then maybe use:
|
BTW I'm now not in favor of this move if we try to commit the coverage report to the repository. They will be huge noise. It duplicates the entire std source code embedded in html |
This won't commit the coverage report to the repo. |
It seems that files outside of |
In other words, deleting the JSON files may not be needed. |
Ping @kt3k |
To keep the commit history clean, why not have a separate branch where a GitHub action auto updates it? |
Maybe deploy daily? |
We want to experiment with having a "BYO test coverage explorer" by serving
deno coverage --html
output instead of using Codecov. To start the experiment, we need to create a Deno Deploy project. Initial experiments show this is what's required (must be done by admin account):std-test-cov
denoland/deno
deno task test
deno coverage --html
coverage/html
main
https://deno.land/std/http/file_server.ts
Pilot here
The text was updated successfully, but these errors were encountered: