flake8
-
djblets/auth/tests/test_views.py (Diff revision 1) Show all issues -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Review Request #9219 — Created Sept. 24, 2017 and discarded
Information | |
---|---|
slamo | |
Djblets | |
release-0.10.x | |
4588 | |
Reviewers | |
djblets, students | |
Added unit tests for djblets.auth.views.register. These unit tests cover registering a new user and attempting to register a user with an existing account/username.
Stepped through djblets.auth.views.register using ipdb to make sure that each test was hitting the proper registration flows.
Description | From | Last Updated |
---|---|---|
Pro tip: You can set a column width of 79 in pycharm settings. It is under Editor -> Code Style … |
|
|
Please limit your summary to 50-ish chars. Wrap summary & description at 72 chars. |
|
|
Needs a file-level docstring that describes what the file is or does. In this case "Unit tests for djblets.auth.views." would … |
|
|
These can be grouped together since they are both 3rd party imports. |
|
|
Needs a docstring. |
|
|
Needs a docstring. |
|
|
E501 line too long (86 > 79 characters) |
![]() |
|
E501 line too long (101 > 79 characters) |
![]() |
|
E501 line too long (84 > 79 characters) |
![]() |
|
Formatting to flake8's complaints can be hard, so try: self.csrf_client.get( reverse('register'), { 'username': 'testUser', 'password1': 'password', 'password2': 'password', 'email': 'user@gmail.com', … |
|
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (93 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (90 > 79 characters) |
![]() |
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (93 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (95 > 79 characters) |
![]() |
|
Docstring. |
|
|
Blank line between these. |
|
|
E501 line too long (90 > 79 characters) |
![]() |
|
E501 line too long (86 > 79 characters) |
![]() |
|
E501 line too long (100 > 79 characters) |
![]() |
|
E501 line too long (85 > 79 characters) |
![]() |
|
E501 line too long (81 > 79 characters) |
![]() |
|
E501 line too long (90 > 79 characters) |
![]() |
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (91 > 79 characters) |
![]() |
|
E501 line too long (93 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (88 > 79 characters) |
![]() |
|
E501 line too long (109 > 79 characters) |
![]() |
|
E501 line too long (97 > 79 characters) |
![]() |
|
Undo. |
|
|
Undo. |
|
|
I'm not sure what we should put in here. Maybe ask David or Christian what they think? |
|
|
W291 trailing whitespace |
![]() |
|
W291 trailing whitespace |
![]() |
|
W291 trailing whitespace |
![]() |
|
W291 trailing whitespace |
![]() |
djblets/auth/tests/test_views.py (Diff revision 1) |
---|
Pro tip: You can set a column width of 79 in pycharm settings. It is under Editor -> Code Style -> Python -> Wrapping and Braces.
djblets/auth/tests/test_views.py (Diff revision 1) |
---|
Needs a file-level docstring that describes what the file is or does. In this case "Unit tests for djblets.auth.views." would be fine.
djblets/auth/tests/test_views.py (Diff revision 1) |
---|
These can be grouped together since they are both 3rd party imports.
djblets/auth/tests/test_views.py (Diff revision 1) |
---|
Formatting to flake8's complaints can be hard, so try:
self.csrf_client.get( reverse('register'), { 'username': 'testUser', 'password1': 'password', 'password2': 'password', 'email': 'user@gmail.com', 'first_name': 'test', 'last_name': 'user', }, )
djblets/testing/templates/djblets_testing/register.html (Diff revision 1) |
---|
I'm not sure what we should put in here. Maybe ask David or Christian what they think?
Commit: |
|
||||
---|---|---|---|---|---|
Diff: |
Revision 2 (+136 -7) |
djblets/auth/tests/test_views.py (Diff revision 2) |
---|
Is there a pycharm setting for deleting trailing whitespaces automatically on save?