-
Notifications
You must be signed in to change notification settings - Fork 108
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
docs(traversal) Add more doctests #567
Conversation
Reviewer's Guide by SourceryThis pull request adds comprehensive doctests to the traversal documentation, demonstrating how to interact with tmux servers, sessions, windows, and panes using the No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #567 +/- ##
==========================================
+ Coverage 88.72% 88.77% +0.04%
==========================================
Files 36 36
Lines 4027 4027
Branches 372 372
==========================================
+ Hits 3573 3575 +2
+ Misses 312 310 -2
Partials 142 142 ☔ View full report in Codecov by Sentry. |
0e22e17
to
255a109
Compare
255a109
to
873ab26
Compare
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.
Hey @tony - I've reviewed your changes - here's some feedback:
Overall Comments:
- The doctests are a great addition, but consider adding a teardown step to remove the test session.
- It would be helpful to include examples of how to send commands to tmux objects.
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
First, create a test session: | ||
|
||
```python | ||
>>> session = server.new_session() # Create a test session using existing server |
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 (typo): Minor typo: Add "the" before "existing server".
The comment should read "# Create a test session using the existing server".
>>> session = server.new_session() # Create a test session using existing server | |
>>> session = server.new_session() # Create a test session using the existing server |
Summary by Sourcery
Documentation: