Justin Crown
Justin Crown
Given an environment variable with a lower-case key like `TEST_my_key`, and a dynaconf `LazySettings` instance configured like `settings = LazySettings(ENVVAR_PREFIX='TEST')`, the result is that the key is converted to `MY_KEY`...
I am working on a test that requires multiple requests to the same URL, but with different query strings. For example: ``` httpretty.register_uri(httpretty.GET, 'https://api.com/v1/services/?id=111111', responses=[ httpretty.Response( body='testing', content_type='application/json', match_querystring=True) ])...
Hey team! First of all great work on tasktiger, it rocks. I have a need to be able to dynamically create tasks with different user defined schedules. As such, I...
A little bit of a hack here, but does successfully hide the "value" input element when istrue, isfalse, and isnull operators are chosen. Since it technically populates the value of...
Are there any best practices around how to further limit the results of the `GetFieldName` view? In my particular use case, all of the objects in my system belong to...
It looks like the "one of" operator maps to "iregex" under the hood. Does this mean that the value should be a regular expression? The confusion hit for me when...
The docs are pretty gross at this point, basically a giant unorganized README. This task includes: * Refactoring docs to be organized in a more logical way * Ensuring that...
After a discussion around pull request #21, it has become obvious that HAR files produced will have different keys and meanings based on the manner in which the HAR file...
The cryptography library used (pycryptodome) is not pure python. As such, it requires a C compiler, and can also create problems running WSGI apps unless the `WSGIApplicationGroup` is set properly....