-
Notifications
You must be signed in to change notification settings - Fork 527
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
Format code, change tests/system to avoid breakage #4459
Conversation
autopep8 will move imports to the top of the file if they come after statements. Move the sys.path magic to another file so we can preserve import ordering.
Codecov Report
@@ Coverage Diff @@
## master #4459 +/- ##
==========================================
+ Coverage 76.11% 76.13% +0.02%
==========================================
Files 158 158
Lines 9782 9782
==========================================
+ Hits 7446 7448 +2
+ Misses 2336 2334 -2
|
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
Steps errors
Expand to view the steps failures
|
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!
autopep8 will move imports to the top of the file if they come after statements. Move the sys.path magic to another file so we can preserve import ordering.
autopep8 will move imports to the top of the file if they come after statements. Move the sys.path magic to another file so we can preserve import ordering. Co-authored-by: Andrew Wilkins <[email protected]>
Motivation/summary
autopep8 will move imports to the top of the file
if they come after statements. Move the sys.path
magic to another file so we can preserve import
ordering.
Checklist
- [ ] I have updated CHANGELOG.asciidocI have considered changes for:
- [ ] documentation- [ ] logging (add log lines, choose appropriate log selector, etc.)- [ ] metrics and monitoring (create issue for Kibana team to add metrics to visualizations, e.g. Kibana#44001)- [ ] telemetry- [ ] Elasticsearch Service (https://cloud.elastic.co)- [ ] Elastic Cloud Enterprise (https://www.elastic.co/products/ece)- [ ] Elastic Cloud on Kubernetes (https://www.elastic.co/elastic-cloud-kubernetes)How to test these changes
make fmt
, should result in no changes.make system-tests
, should run successfullyRelated issues
Closes #4454