Skip to content

Commit 26f3af3

Browse files
committed
Removing the "Django not configured" check from tox sanity/basic checking - alternative is to manually supply a basic django settings file which seems like it would clog up the repo more than one single disable flag in the tox file
1 parent 36fc49f commit 26f3af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ envlist =
1515
[testenv]
1616
commands =
1717
django_not_installed: bash -c \'pylint --load-plugins=pylint_django setup.py | grep django-not-available\'
18-
django_is_installed: pylint --load-plugins=pylint_django setup.py
18+
django_is_installed: pylint --load-plugins=pylint_django --disable=E5110 setup.py
1919
flake8: flake8
2020
pylint: pylint --rcfile=tox.ini -d missing-docstring,too-many-branches,too-many-return-statements,too-many-ancestors,fixme --ignore=tests pylint_django setup
2121
readme: bash -c \'python setup.py -q sdist && twine check dist/*\'

0 commit comments

Comments
 (0)