UPD: made pylint happy again
All checks were successful
buildbot/tox Build done.

This commit is contained in:
2021-10-19 11:17:24 +02:00
parent d0ee8e53d5
commit ef98d51e8c
3 changed files with 6 additions and 2 deletions

View File

@@ -3,7 +3,6 @@
persistent=no
load-plugins=pylint_django
[MESSAGES CONTROL]
disable=missing-docstring,
@@ -12,6 +11,8 @@ disable=missing-docstring,
missing-function-docstring,
useless-object-inheritance,
consider-using-f-string,
unspecified-encoding,
django-not-configured,
[BASIC]

View File

@@ -92,6 +92,7 @@ class ProgramInstallTestCase(AbstractProgramTestCase):
'django_deploy.tests.fake_app2',
]
# Similar code from test_api.test_install_apps
self.assert_installed_apps(project_dir, installed_apps)
self.assert_urlpatterns(project_dir, [])

View File

@@ -1,5 +1,6 @@
[tox]
envlist = py3-django3,py3-django2
#envlist = py3-django3,py3-django2
envlist = py3-django3
[testenv]
deps = coverage
@@ -12,3 +13,4 @@ deps = coverage
commands = coverage run -m pytest
coverage report --skip-covered --fail-under=98
pylint django_deploy