-
Notifications
You must be signed in to change notification settings - Fork 50
Add support for Django client driver #146
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
Add support for Django client driver #146
Conversation
This is the result of the django-admin startproject django_sample_project, without any modification.
If we reach admin, we can assume django is working!
This is an attempt to avoid the failing tests.
This way, we can opt out of pytest-django.
Python 2.7 accepts Django 1.11 at last, so the sample project needs to be compatible with both.
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.
please address
please also add a changelog record
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.
@michelts sorry, forgot to mention, please also add your record to the authors
Done! Thank you @bubenkoff |
@michelts added you to the repo, please merge by squashing the commits into one |
@michelts released 2.1.0 |
The splinter API is very useful to traverse over a Django client response body, but there is a minor bug that prevents one to use django as driver with pytest-splinter.
I fixed the bug and added a test for it.
Let me know if I missed anything!