diff --git a/tests/settings.py b/tests/settings.py index abd89074..76aae347 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -60,12 +60,8 @@ JENKINS_TASKS = ( 'django_jenkins.tasks.run_pylint', 'django_jenkins.tasks.run_pep8', - 'django_jenkins.tasks.run_csslint', - 'django_jenkins.tasks.run_scsslint', - 'django_jenkins.tasks.run_flake8', 'django_jenkins.tasks.run_pyflakes', - 'django_jenkins.tasks.run_jshint', - 'django_jenkins.tasks.run_sloccount', + 'django_jenkins.tasks.run_flake8', ) COVERAGE_EXCLUDES = ['tests.test_app.not_for_coverage', ] diff --git a/tox.ini b/tox.ini index 1cca1fd9..e2c45d40 100644 --- a/tox.ini +++ b/tox.ini @@ -9,16 +9,16 @@ basepython = py35: python3.5 commands = python tests/manage.py {posargs:jenkins --enable-coverage --pep8-max-line-length=150 --liveserver=localhost:8090-8100 --output-dir=reports/{envname} --testrunner=tests.runner.CustomTestRunner --ok} deps = - dj18: django==1.8.14 - dj19: django==1.9.9 - dj110: django==1.10.1 - pylint==1.6.4 + dj18: django==1.8.17 + dj19: django==1.9.12 + dj110: django==1.10.5 + pylint==1.6.5 pylint-django==0.7.2 - coverage==4.2 - pyflakes==1.3.0 + coverage==4.3.4 + pyflakes==1.5.0 pep8==1.7.0 - flake8==3.0.4 - selenium==3.0.0b3 - pyvirtualdisplay==0.2 + flake8==3.3.0 + selenium==3.0.2 + pyvirtualdisplay==0.2.1 ipdb passenv=HOME