-
Notifications
You must be signed in to change notification settings - Fork 219
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
Integrate codespell on toolbox code #1149
Conversation
Build succeeded. ✔️ unit-test SUCCESS in 7m 36s |
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.
Thanks for working on this, @nievesmontero
0cb9ff3
to
cf6ef2e
Compare
Build succeeded. ✔️ unit-test SUCCESS in 7m 42s |
containers#1166 containers#1149 Signed-off-by: Nieves Montero <[email protected]>
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.
I split the commit that fixes the existing spelling mistakes into #1166 and merged it.
cf6ef2e
to
8619e56
Compare
Build succeeded. ✔️ unit-test SUCCESS in 8m 58s |
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.
Thanks for the updates! Could you please remove this patch from this pull request? Like I said before, it has already been merged via #1166
Try |
recheck |
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.
Nitpick: you can drop this line from your commit message:
Codespell has been added to the meson.build file and has been tested.
... because that's obvious from looking at the commit.
Build succeeded. ✔️ unit-test SUCCESS in 8m 39s |
8619e56
to
4c15346
Compare
Build failed. ❌ unit-test RETRY_LIMIT in 8m 16s |
The tests are failing with:
|
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.
Thanks for the updates, @nievesmontero !
meson.build
Outdated
@@ -57,6 +58,10 @@ if shellcheck.found() | |||
test('shellcheck toolbox (deprecated)', shellcheck, args: [toolbox_sh]) | |||
endif | |||
|
|||
if codespell.found() | |||
test('codespell toolbox', codespell, args: ['--skip', meson.project_build_root(), meson.source_root()]) |
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.
It should be meson.project_source_root()
, not meson.source_root()
. See the test failures.
c1e3a29
to
1518e5a
Compare
Build failed. ❌ unit-test FAILURE in 8m 28s |
1518e5a
to
7dc40a5
Compare
Thanks for the updates, @nievesmontero !
Now that the codespell test is actually getting run, it's failing:
|
Build failed. ❌ unit-test FAILURE in 8m 37s |
containers#1146 Signed-off-by: Nieves Montero <[email protected]>
It's because of that I do wish codespell offered inline directives to ignore such one-off cases. |
7dc40a5
to
9438db2
Compare
Build succeeded. ✔️ unit-test SUCCESS in 8m 22s |
I took the liberty to fix this up, and extended the test to cover filenames and hidden files too. |
Thanks for working on this, @nievesmontero ! |
No description provided.