Check email address domain when signing up

This commit is contained in:
Alexandre Iooss 2021-10-11 19:06:29 +02:00
parent 5728b9a18e
commit f992c88152
6 changed files with 11 additions and 48 deletions

View file

@ -18,7 +18,7 @@ deps =
-r{toxinidir}/requirements.txt
coverage
commands =
coverage run --omit='photo21/wsgi.py' --source=photo21,photologue_custom,accounts ./manage.py test
coverage run --omit='photo21/wsgi.py' --source=photo21,photologue_custom ./manage.py test
coverage report -m
[testenv:linters]
@ -32,7 +32,7 @@ deps =
pep8-naming
pyflakes
commands =
flake8 photo21 photologue_custom accounts
flake8 photo21 photologue_custom
[flake8]
ignore = W503, I100, I101