mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-07-11 08:32:21 +03:00
Merge branch 'master' into auto-generate-contributors
This commit is contained in:
commit
41bb5bc9f9
|
@ -19,7 +19,7 @@ The config for flake8 is located in setup.cfg. It specifies:
|
||||||
pylint
|
pylint
|
||||||
------
|
------
|
||||||
|
|
||||||
This is included in flake8's checks, but you can also run it separately to see a more detailed report: ::
|
To run pylint: ::
|
||||||
|
|
||||||
$ pylint <python files that you wish to lint>
|
$ pylint <python files that you wish to lint>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ binaryornot==0.4.4
|
||||||
# Code quality
|
# Code quality
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
black==19.10b0
|
black==19.10b0
|
||||||
isort==5.4.0
|
isort==5.4.1
|
||||||
flake8==3.8.3
|
flake8==3.8.3
|
||||||
flake8-isort==4.0.0
|
flake8-isort==4.0.0
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ repos:
|
||||||
- id: black
|
- id: black
|
||||||
|
|
||||||
- repo: https://github.com/timothycrosley/isort
|
- repo: https://github.com/timothycrosley/isort
|
||||||
rev: 5.3.2
|
rev: 5.4.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: isort
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ pytest-sugar==0.9.4 # https://github.com/Frozenball/pytest-sugar
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
sphinx==3.2.0 # https://github.com/sphinx-doc/sphinx
|
sphinx==3.2.1 # https://github.com/sphinx-doc/sphinx
|
||||||
sphinx-autobuild==0.7.1 # https://github.com/GaretJax/sphinx-autobuild
|
sphinx-autobuild==0.7.1 # https://github.com/GaretJax/sphinx-autobuild
|
||||||
|
|
||||||
# Code quality
|
# Code quality
|
||||||
|
@ -37,7 +37,7 @@ pre-commit==2.6.0 # https://github.com/pre-commit/pre-commit
|
||||||
|
|
||||||
# Django
|
# Django
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy
|
factory-boy==3.0.1 # https://github.com/FactoryBoy/factory_boy
|
||||||
|
|
||||||
django-debug-toolbar==2.2 # https://github.com/jazzband/django-debug-toolbar
|
django-debug-toolbar==2.2 # https://github.com/jazzband/django-debug-toolbar
|
||||||
django-extensions==3.0.5 # https://github.com/django-extensions/django-extensions
|
django-extensions==3.0.5 # https://github.com/django-extensions/django-extensions
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
from typing import Any, Sequence
|
from typing import Any, Sequence
|
||||||
|
|
||||||
from django.contrib.auth import get_user_model
|
from django.contrib.auth import get_user_model
|
||||||
from factory import DjangoModelFactory, Faker, post_generation
|
from factory import Faker, post_generation
|
||||||
|
from factory.django import DjangoModelFactory
|
||||||
|
|
||||||
|
|
||||||
class UserFactory(DjangoModelFactory):
|
class UserFactory(DjangoModelFactory):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user