Jenkinsfile: add pylint to normal run

This commit is contained in:
Benjamin Dauvergne 2020-07-13 18:21:20 +02:00
parent 1480ed1ec0
commit 988bca90f1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ pipeline {
sh """
virtualenv -p python3 ${env.TMPDIR}/venv/
${env.TMPDIR}/venv/bin/pip install tox
PGPORT=`python -c 'import struct; import socket; s=socket.socket(); s.setsockopt(socket.SOL_SOCKET, socket.SO_LINGER, struct.pack("ii", 1, 0)); s.bind(("", 0)); print(s.getsockname()[1]); s.close()'` pg_virtualenv -o fsync=off ${env.TMPDIR}/venv/bin/tox -r -e rbac-py3-dj111,authentic-py3-dj111-drf34"""
PGPORT=`python -c 'import struct; import socket; s=socket.socket(); s.setsockopt(socket.SOL_SOCKET, socket.SO_LINGER, struct.pack("ii", 1, 0)); s.bind(("", 0)); print(s.getsockname()[1]); s.close()'` pg_virtualenv -o fsync=off ${env.TMPDIR}/venv/bin/tox -r -e rbac-py3-dj111,authentic-py3-dj111-drf34,pylint"""
}
post {
always {