-
Notifications
You must be signed in to change notification settings - Fork 459
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
Tests upgrade + tiny lib bump #256
Conversation
eb68826
to
3d40ec1
Compare
pyicloud/base.py
Outdated
def __init__(self, password): | ||
self.password = password | ||
super(PyiCloudPasswordFilter, self).__init__(password) |
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.
Adding a test about this ?
pyicloud/cmdline.py
Outdated
location = filename | ||
pickle_file = open(location, 'wb') | ||
pickle.dump(data, pickle_file, protocol=pickle.HIGHEST_PROTOCOL) | ||
pickle.dump(idevice.content, pickle_file, protocol=pickle.HIGHEST_PROTOCOL) |
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.
Adding a test about this ?
pyicloud/services/account.py
Outdated
return self._devices | ||
|
||
|
||
@six.python_2_unicode_compatible | ||
class AccountDevice(dict): | ||
def __init__(self, device_info): | ||
super(AccountDevice, self).__init__(device_info) |
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.
Adding a test about this ?
First, make the PR unitary |
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.
Good for that, other commits in unit PRs
Proposed change
Tests upgrade + tiny lib bump
Type of change
Example of code:
Additional information
Checklist
If user exposed functionality or configuration variables are added/changed: