Mike Lane

Results 18 issues of Mike Lane

Operating system: macos 10.14.4 Python version: 3.6.7 *Black* version: 19.3b0 Does also happen on master: Yes We have an interesting way to create pytest fixtures. We've created a function called...

T: style
F: linetoolong

Upgrade to requests 2.21.0 (which is little more than a settings change). I upgraded you from nose to pytest (along with pytest-pep8) and upgraded the documentation, as well. Also I...

### Describe the problem We have implemented django constance with a redis backend and a 60 local cache. When there is a large amount of traffic, our service becomes unstable,...

Everything worked fine with v0.6 and the following: ```python DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', 'HOST': os.getenv('DB_HOST'), 'NAME': os.getenv('DB_NAME'), 'USER': os.getenv('DB_USER'), 'PASSWORD': os.getenv('DB_PASSWORD'), 'CONN_MAX_AGE': None, }, 'readonly': { 'ENGINE':...

## Is your feature request related to a problem? Please describe Not a problem, but a missing feature ## Describe the solution you'd like As a mani user, I would...

enhancement

It would be great to be able to customize the field of a sub-factory (or sub-sub-factory, etc.) right from the parent's build method. For example: ```python class Bar(BaseModel): x: int...

enhancement
help wanted
good first issue

It would be super handy to have some method that would easily create a fixture out of a factory. For example: ```python class SomeLongNamedModel(BaseModel): id: UUID @register_fixture # Or some...

enhancement
help wanted
good first issue

When we have this: ```python class Foo(BaseModel): name: str class Foos(BaseModel): __root__: dict(str, Foo) ``` and this: ```python class FooFactory(ModelFactory): __model__ = Foo class FoosFactory(ModelFactory): __model__ = Foos ``` There...

The isort module provides many different ways of accomplishing the wrapping for a given project. From my experience, this is a widely used option in projects that use isort, so...

isort
needs-decision

There is a security vulnerability with 2.1.5, so let's explicitly set 2.1.6 using the following format: ```python Django~=2.1.6 ``` Make sure to run `pipenv install --dev` before you commit and...

help wanted
beginner-friendly
chore
Back End