-
Notifications
You must be signed in to change notification settings - Fork 87
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
Tidy up whitespace #1923
Tidy up whitespace #1923
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1923 +/- ##
=======================================
Coverage 89.59% 89.59%
=======================================
Files 95 95
Lines 12347 12347
Branches 2166 2166
=======================================
Hits 11062 11062
Misses 864 864
Partials 421 421 ☔ View full report in Codecov by Sentry. |
❌ 197/198 passed, 2 flaky, 1 failed, 23 skipped, 4h34m38s total ❌ test_running_real_validate_groups_permissions_job: TimeoutError: Timed out after 0:05:00 (6m48.022s)
Flaky tests:
Running from acceptance #4045 |
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.
Is this the effect of changing a linter setting somewhere? The Changelog changes are a bit tricky, they will come. back
It's a side-effect of the editor settings in #1778. Historically we have quite a few files with trailing whitespace and missing the EOL at EOF. These aren't enforced by linting (which only covers python code), but with the new editor settings in place any time you modify a file trailing whitespace elsewhere in the file will be stripped. This was intended as a fix-them-all-for-now PR to avoid spurious updates on other PRs, particularly in Markdown.
Agreed; I'm happy to drop those given that the file is generated. |
This is a generated file.
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.
lgtm
Changes
This PR follows on from #1778 by cleaning up files that use tabs, have trailing whitespace, or are missing EOL at the end of files. By fixing these in one go other PRs become less noisy. (Sample files used in tests have been left alone and are not affected by this PR.)