changes in pylint

This commit is contained in:
shikhar.s 2019-08-28 20:55:28 +05:30
parent 59940e33c2
commit 96b2680378
1 changed files with 11 additions and 4 deletions

15
Jenkinsfile vendored
View File

@ -148,10 +148,17 @@ pipeline {
python -m coverage xml -o PyBitmessage/coverage.xml
'''
// echo "Style check"
// sh ''' source activate ${BUILD_TAG}
// pylint PyBitmessage || true
// '''
echo "Style check"
sh ''' echo ${SHELL}
[ -d venv ] && rm -rf venv
#virtualenv --python=python2.7 venv
virtualenv venv
#. venv/bin/activate
export PATH=${VIRTUAL_ENV}/bin:${PATH}
python setup.py install
pip install pylint
pylint PyBitmessage || true
'''
}
post{
always{