Clinton Blackburn
Clinton Blackburn
## Checklist - [x] I have verified that that issue exists against the `master` branch of Django REST framework. - [x] I have searched for similar issues in both open...
The decryption password is now passed to the underlying key class when attempting to determine the key type. This ensures PasswordRequiredException is not raised during this process.
I am mocking requests that rely on CSRF tokens set in cookies. I configure `axios` as follows: ``` axios.defaults.xsrfCookieName = 'csrftoken'; axios.defaults.xsrfHeaderName = 'X-CSRFToken'; ``` These values don't seem to...
Has anyone had success running tests that rely on caching with the xdist plugin? I created a fixture, similar to the database fixture, to add a cache key prefix: https://github.com/edx/course-discovery/blob/ad1dca5623b765c6d85d83dcf7e5f75c7b8e1181/conftest.py#L18-L40....
See #81. If `abstract-blob-store` is needed to compile the project, `abstract-blob-store` should be a production dependency. It's currently a development dependency, so not installed when used in other projects.
I would like to utilize this plugin for a user selection field. Say I have a users table that maps an ID to non-unique names (e.g. John Doe). As it...
The pylint_django plugin is required (https://github.com/edx/edx-lint/blob/96f4c58137f73bd4798400c4107dbf1a422dc34f/edx_lint/files/pylintrc#L22), but is not included as a dependency of this package. Unless this is intended only for Django projects, pylint_django should not be a default...
After retrieving a parent element I would like to be able to make queries on the child elements. jQuery and Selenium offer real-world implementation examples. ``` html ``` ``` python...
A recent attempt to remove a field from a config model failed: https://github.com/edx/edx-platform/pull/14939. Please document the process for removing fields.