changed signup to accounts

finished fixing linting
This commit is contained in:
aeltheos 2021-10-07 16:50:35 +02:00
parent 4ab42bf3de
commit d8853cee1c
11 changed files with 13 additions and 12 deletions

View file

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