Commit 47ed3a62 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Merge branch 'revert-e46aca3c' into 'master'

Revert "Merge branch 'master' into 'master'"

See merge request !28
parents e46aca3c 3ccf378b
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -13,13 +13,11 @@ if ! test -f .pylintrc.yml; then
  curl -o .pylintrc.yml "${ci_support}/.pylintrc-default.yml"
fi

# - pylint<2.6 version bound put in place out of an abundance of cautiousness, no
#   particular reason. -- 2020-07-15 AK
# - pytest is being installed since test_*.py modules may import pytest, which
# <2.6 version bound put in place out of an abundance of cautiousness, no particular reason
# 2020-07-15 AK
# pytest is being installed since test_*.py modules may import pytest, which
# pylint may inspect.
# - pytest<6 because https://github.com/pytest-dev/pytest/pull/7565 did not make
#   pytest-6.0.0.
$PY_EXE -m pip install "pylint<2.6" PyYAML "pytest<6"
$PY_EXE -m pip install "pylint<2.6" PyYAML pytest

PYLINT_RUNNER_ARGS="--yaml-rcfile=.pylintrc.yml"