-
Notifications
You must be signed in to change notification settings - Fork 229
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
chore: remove nyc package #4120
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/test tav
@trentm I've marked as ready for review but I have some questions I'd like to discuss |
@@ -175,15 +175,6 @@ jobs: | |||
- run: npm ls --all || true | |||
- name: npm test | |||
run: npm test | |||
- uses: inception-health/otel-upload-test-artifact-action@v1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note for reviewer: removing this will make disappear the artefacts attached to the test actions. IIUC this transforms the tests results to an OTEL trace with data in JSON format for inspection but I don't recall using it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@trentm as discussed I've removed report generation to |
@@ -175,15 +175,6 @@ jobs: | |||
- run: npm ls --all || true | |||
- name: npm test | |||
run: npm test | |||
- uses: inception-health/otel-upload-test-artifact-action@v1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -7,9 +7,6 @@ | |||
/.pnp | |||
.pnp.js | |||
|
|||
# testing | |||
/coverage | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Fine to remove this, but it is unrelated to the coverage tooling in the top-level package.
@@ -192,7 +191,6 @@ | |||
"mysql2": "^3.2.4", | |||
"ndjson": "^2.0.0", | |||
"numeral": "^2.0.6", | |||
"nyc": "^15.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can also npm uninstall tap-junit
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done! thanks for pointing it out :)
Removes
nyc
since is not used anymore. Ref: #4067 (comment)Checklist